From a5ccdd4671133f62f0bf15ff42af4e69294b9e74 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 6 Jan 2023 11:17:28 -0800 Subject: [PATCH] v3.1.0 --- HISTORY.rst | 22 ++++++++++++++++++++++ internetarchive/__version__.py | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index af1cc796..f036fe88 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,28 @@ Release History --------------- +3.1.0 (2023-01-06) +++++++++++++++++++ + +**Bugfixes** + +- Fixed bug in `ia search --fts` where `--itemlist` was printing empyt lines. +- Fixed bug in `ia search --fts` where `-p scope:all` was not working. +- Fixed directory creation race conditions in download. +- Fixed bug in `ia download --stdout` where nothing would be printed to stdout + if the specified file existed on disk. +- Fixed bug where that made it impossible to upload to user items. +- Fixed memoryview error when running `Item.upload` with `StringIO` input + and `verbose=True`. +- Fixed bug in upload where a period was not being expanded properly to the + contents of the current directory. + +**Features and Improvements** + +- Added support for admins to delete other users reviews +- Added support for excluding files in `ia download` via the `--exclude` parameter. +- Various refactoring and code simplifications. + 3.0.2 (2022-06-15) ++++++++++++++++++ diff --git a/internetarchive/__version__.py b/internetarchive/__version__.py index da4039bc..7f5601d9 100644 --- a/internetarchive/__version__.py +++ b/internetarchive/__version__.py @@ -1 +1 @@ -__version__ = '3.0.2' +__version__ = '3.1.0'