Cut 1.4.2 for long_description fix

This commit is contained in:
Jeff Forcier 2018-04-27 10:03:12 -07:00
parent 36e55b444c
commit 52323d8182
2 changed files with 5 additions and 1 deletions

View file

@ -2,6 +2,10 @@
Changelog
=========
* :release:`1.4.2 <2018-04-27>`
* :support:`74` We never pulled our README into our ``setup.py`` metadata,
resulting in a rather sparse PyPI page! This has been fixed. Thanks to Peter
Demin for the report.
* :release:`1.4.1 <2018-03-28>`
* :support:`73` Sphinx 1.7.x changed some semi-public APIs; given this is the
second minor release in a row to do so, we're explicitly bracketing our

View file

@ -1,2 +1,2 @@
__version_info__ = (1, 4, 1)
__version_info__ = (1, 4, 2)
__version__ = '.'.join(map(str, __version_info__))