diff --git a/HISTORY.md b/HISTORY.md index 343463b..879b77b 100755 --- a/HISTORY.md +++ b/HISTORY.md @@ -4,6 +4,18 @@ Release History master ------ +0.8.0 (2020-05-24) +------------------ + +**Improvements** + +* Drop Python 2 support! + * Remove Python 2.7 and 3.5 support. + * Replace all instances of `.format` with f-strings. + * Remove all `__future__` imports. + * Fix HTTP 403 forbidden exception in read_pdf(url) and remove Python 2 urllib support. + * Fix test data. + **Bugfixes** * Fix library discovery on Windows. [#32](https://github.com/camelot-dev/camelot/pull/32) by [KOLANICH](https://github.com/KOLANICH). diff --git a/camelot/__version__.py b/camelot/__version__.py index 145df48..1eb9ce8 100644 --- a/camelot/__version__.py +++ b/camelot/__version__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -VERSION = (0, 7, 3) +VERSION = (0, 8, 0) PRERELEASE = None # alpha, beta or rc REVISION = None diff --git a/setup.py b/setup.py index 0619f12..9b1a322 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,6 @@ def setup_package(): # Trove classifiers # Full list: https://pypi.python.org/pypi?%3Aaction=list_classifiers 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8'