diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst index 8ae1661..874f20e 100644 --- a/doc/source/changelog.rst +++ b/doc/source/changelog.rst @@ -7,6 +7,15 @@ py3c Changes Version History =============== +v1.1 (2019-10-04) +----------------- + +Compatibility: + +* Tests updated to pass with Python 3.8.0rc1 +* Python versions 2.6 and 3.3 are no longer tested (due to lack of CI support) + + v1.0 (2018-02-06) ----------------- diff --git a/doc/source/conf.py b/doc/source/conf.py index 16fc19d..d840bb6 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -53,9 +53,9 @@ # built documents. # # The short X.Y version. -version = '1.0' +version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.0a1' +release = '1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/py3c.pc.in b/py3c.pc.in index f7ec230..93c3769 100644 --- a/py3c.pc.in +++ b/py3c.pc.in @@ -8,5 +8,5 @@ Description: Python 2/3 compatibility layer for C extensions #Requires: python #Requires: python3 -Version: 1.0 +Version: 1.1 Cflags: -I${includedir} diff --git a/setup.py b/setup.py index 91a93af..1181fcb 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def find_headers(): setup( name='py3c', - version='1.0', + version='1.1', description='Python compatibility headers', long_description=long_description, author='Petr Viktorin',