Skip to content

Commit

Permalink
Release v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
haboustak committed Sep 30, 2023
1 parent ed0bd37 commit 6b9323a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Change Log
A summary of significant changes within each version of `gitlab-art`.

## v0.4.0
- ENH: Added support for downloading and installing artifacts during CI using GitLab job tokens via `-t, --token-type` option of "art configure".
- ENH: New `-k, --keep-empty-dirs` option of "art install" will preserve empty directories when installing a directory tree from an archive.
- ENH: The install command will download artifacts when necessary, eliminating the need for an explicit "art download".
- ENH: Improve the quality of error messages caused by some common configuration or environmental issues.
- BUG: Report failures when an install request did not match a file in the downloaded archive.
2 changes: 1 addition & 1 deletion art/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_info__ = (0, 3, 1)
__version_info__ = (0, 4, 0)
__version__ = '.'.join(str(x) for x in __version_info__)

0 comments on commit 6b9323a

Please sign in to comment.