diff --git a/HISTORY.rst b/HISTORY.rst index 7499ab69..819c5e52 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,8 +3,21 @@ Release History --------------- -1.0.1 (?) -+++++++++ +1.0.1 (2016-03-07) +++++++++++++++++++ + +**Bugfixes** + +- Fixed OverflowError bug in uploads on 32-bit systems when uploading files larger than ~2GB. +- Fixed unicode bug in upload where ``urllib.parse.quote`` is unable to parse non-encoded strings. + +**Features and Improvements** + +- Only generate MD5s in upload if they are used (i.e. verify, delete, or checksum is True). +- verify is off by default in ``ia upload``, it can be turned on with ``ia upload --verify``. + +1.0.1 (2016-03-04) +++++++++++++++++++ **Bugfixes** diff --git a/internetarchive/__init__.py b/internetarchive/__init__.py index f3af44b5..f8a82367 100644 --- a/internetarchive/__init__.py +++ b/internetarchive/__init__.py @@ -18,7 +18,7 @@ from __future__ import absolute_import __title__ = 'internetarchive' -__version__ = '1.0.2.dev1' +__version__ = '1.0.2' __author__ = 'Jacob M. Johnson' __license__ = 'AGPL 3' __copyright__ = 'Copyright 2015 Internet Archive'