From 000629d8f175a1665afbf56af1557447461792f3 Mon Sep 17 00:00:00 2001 From: Peter Briggs Date: Mon, 2 Dec 2024 15:58:45 +0000 Subject: [PATCH 1/2] Bump version to 1.7.0. --- ngsarchiver/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ngsarchiver/__init__.py b/ngsarchiver/__init__.py index 93ccee3..ddba1ab 100644 --- a/ngsarchiver/__init__.py +++ b/ngsarchiver/__init__.py @@ -1,5 +1,5 @@ # Current version of the library -__version__ = '1.6.0' +__version__ = '1.7.0' def get_version(): """ From f5c946259eb1a74d52ab4846c22858b7742d30a8 Mon Sep 17 00:00:00 2001 From: Peter Briggs Date: Mon, 2 Dec 2024 15:59:08 +0000 Subject: [PATCH 2/2] Update CHANGES file. --- CHANGES.rst | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index af49cf9..9d9bf27 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,25 @@ Version History and Changes =========================== +--------------------------- +Version 1.7.0 (2024-12-02) +--------------------------- + +* Updated the command line help and documentation for the + archiver subcommands (PR #45) +* Add unpacking information to the ``ARCHIVE_README`` files + for compressed archive directories (PR #46) +* Bug fix to copy verification for copy archive directories + (PR #48) +* Add ``ARCHIVE_TREE.txt`` files to compressed archive + directories (visual tree representation of the source + directory contents) (PR #49) +* Rename ``ARCHIVE_README`` files to ``ARCHIVE_README.txt`` + (PR #50) +* Add ``ARCHIVE_FILELIST.txt`` files to compressed archive + directories (plain text lists of paths of the source + directory contents) (PR #51) + --------------------------- Version 1.6.0 (2024-11-28) ---------------------------