diff --git a/CHANGELOG.rst b/CHANGELOG.rst index eddddb2..4ec40f3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -3,6 +3,27 @@ Changelog Versions follow `Semantic Versioning `_ (``..``). +v1.1.0 (2019-06-23) +------------------- + +Features +^^^^^^^^ + +* (Python) Can override ignoring local imports in modules by using __all__. + +Bug Fixes +^^^^^^^^^ + +* (Python) Fixed incorrect formatting of functions and methods. +* Added support for Sphinx 2.1. + +Trivial/Internal Changes +^^^^^^^^^^^^^^^^^^^^^^^^ + +* Fixed some dead links in the README. +* Fixed lint virtualenv. + + v1.0.0 (2019-04-24) ------------------- diff --git a/docs/conf.py b/docs/conf.py index d8d4423..9d0ddc3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -52,9 +52,9 @@ author = u'Read the Docs, Inc' # built documents. # # The short X.Y version. -version = '1.0' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.0.0' +release = '1.1.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 2c3b65c..ca41495 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages setup( name='sphinx-autoapi', - version='1.0.0', + version='1.1.0', author='Eric Holscher', author_email='eric@ericholscher.com', url='http://github.com/rtfd/sphinx-autoapi',