diff --git a/doc/CHANGELOG.rst b/doc/CHANGELOG.rst index 48d230fb5..ca384f140 100644 --- a/doc/CHANGELOG.rst +++ b/doc/CHANGELOG.rst @@ -4,6 +4,10 @@ Changelog This changelog *only* contains changes from the *first* pypi release (0.5.4.3) onwards. - **Next version - unreleased** + + +- **0.7.1 - 12-16-2019** + - Updated the keyword safe list for Python 3. - Automatic conversion of CharSequence from Python strings. diff --git a/jpype/__init__.py b/jpype/__init__.py index e8be55945..c4234ecfa 100644 --- a/jpype/__init__.py +++ b/jpype/__init__.py @@ -39,7 +39,7 @@ __all__.extend(_jcustomizer.__all__) __all__.extend(_gui.__all__) -__version_info__ = (0, 7, 0) +__version_info__ = (0, 7, 1) __version__ = ".".join(str(i) for i in __version_info__) diff --git a/setup.py b/setup.py index cc4cca6c7..96b5406ae 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ setup( name='JPype1', - version='0.7.0', + version='0.7.1', description='A Python to Java bridge.', long_description=open('README.rst').read(), license='License :: OSI Approved :: Apache Software License',