Releases: JuliaIO/ArgTools.jl
v1.1.1
ArgTools v1.1.1
This release documents the arg_isdir and arg_mkdir utility functions added in v1.1.0. It also improves the error handling behavior of arg_mkdir in that it leaves a pre-existing directory path intact on cleanup, only deleting its contents.
Closed issues:
- document arg_{isdir,mkdir} (#9)
Merged pull requests:
- document and improve arg_{is,mk}dir (#10) (@StefanKarpinski)
v1.1.0
ArgTools v1.1.0
This release adds (but alas, I realize too late, does not document) two new API functions:
arg_isdir: ensures argument is an existing directory;arg_mkdir: ensures argument is an empty directory, creating it if necessary, withmktempdirif optional.
This functionality is used by Tar.jl for example for the directory that tarballs are extracted into.
Merged pull requests:
- arg_{isdir,mkdir}: reading/making directories (#8) (@StefanKarpinski)
v1.0.1
ArgTools v1.0.1
This is a pure documentation fix release. There was a typo writing @test_arg instead of @arg_test. It also reorders the README to move the send_data example further down so that people don't think that's the functionality that this package provides.
v1.0.0
ArgTools v1.0.0
Initial ArgTools release.
Merged pull requests:
- add support for command & pipeline arguments (#1) (@StefanKarpinski)
- tests: exercise arg_writers(path) method (#2) (@StefanKarpinski)
- tests: cover error handling code paths (#3) (@StefanKarpinski)
- README: some tweaks and improvements (#4) (@StefanKarpinski)
- tests: avoid relying on temp_cleanup_purge (#5) (@StefanKarpinski)