From db5ef8a1a115c27a7c41a41c85f4a834a484428d Mon Sep 17 00:00:00 2001 From: jake Date: Thu, 28 Jun 2018 12:12:53 -0700 Subject: [PATCH] v1.8.0 --- HISTORY.rst | 7 +++++-- internetarchive/__init__.py | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d96dab67..c064b68b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,8 +3,8 @@ Release History --------------- -1.8.0 (?) -+++++++++ +1.8.0 (2018-06-28) +++++++++++++++++++ **Feautres and Improvements** @@ -13,12 +13,15 @@ Release History - Added support for using netrc files in ``ia configure``. - Added ``--remove`` option to ``ia metadata`` for removing values from single or mutli-field metadata elements. - Added support for appending a metadata value to an existing metadata element (as a new entry, not simply appending to a string). +- Added ``--no-change-timestamp`` flag to ``ia download``. + Download files retain the timestamp of "now", not of the source material when this option is used. **Bugfixes** - Fixed bug in upload where StringIO objects were not uploadable. - Fixed encoding issues that were causing some ``ia tasks`` commands to fail. - Fixed bug where keep-old-version wasn't working in ``ia move``. +- Fixed bug in ``internetarchive.api.modify_metadata`` where debug and other args were not honoured. 1.7.7 (2018-03-05) ++++++++++++++++++ diff --git a/internetarchive/__init__.py b/internetarchive/__init__.py index 5ab9237f..4aa5d2dc 100644 --- a/internetarchive/__init__.py +++ b/internetarchive/__init__.py @@ -37,7 +37,7 @@ from __future__ import absolute_import __title__ = 'internetarchive' -__version__ = '1.8.0.dev1' +__version__ = '1.8.0' __author__ = 'Jacob M. Johnson' __license__ = 'AGPL 3' __copyright__ = 'Copyright (C) 2012-2017 Internet Archive'