pull/167/head v1.1.0
Ashley Whetter 5 years ago
parent 6629e0b10f
commit 0b947a028e

@ -3,6 +3,27 @@ Changelog
Versions follow `Semantic Versioning <https://semver.org/>`_ (``<major>.<minor>.<patch>``).
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)
-------------------

@ -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.

@ -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',

Loading…
Cancel
Save