diff --git a/HISTORY.rst b/HISTORY.rst index 3fcdf87..4f65a8a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.8.7 (2016-12-21) +++++++++++++++++++ +- Fix Python 3 support +- Handle empty AMP image lists + 0.8.6 (2016-11-17) ++++++++++++++++++ - Handle AMP image list of strings vs list of objects diff --git a/docs/conf.py b/docs/conf.py index aef3cfa..3319531 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '0.8.6' +version = '0.8.7' # The full version, including alpha/beta/rc tags. -release = '0.8.6' +release = '0.8.7' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/lassie/__init__.py b/lassie/__init__.py index 37d243f..7621abe 100644 --- a/lassie/__init__.py +++ b/lassie/__init__.py @@ -14,7 +14,7 @@ """ -__version__ = '0.8.6' +__version__ = '0.8.7' from .api import fetch from .core import Lassie diff --git a/setup.py b/setup.py index 5b03f33..4d213e3 100755 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: from distutils.core import setup -__version__ = '0.8.6' +__version__ = '0.8.7' if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload')