Skip to content

Commit

Permalink
Bump version: 0.6.2 → 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
marscher committed Apr 3, 2018
1 parent 79e1999 commit d5c0814
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.2
current_version = 0.6.3
commit = True
tag = True

Expand Down
1 change: 1 addition & 0 deletions doc/CHANGELOG.rst
Expand Up @@ -4,6 +4,7 @@ Changelog
This changelog *only* contains changes from the *first* pypi release (0.5.4.3) onwards.

- **Next version - unreleased**
- **0.6.3 - 2018-04-03**
- Java reference counting has been converted to use JNI
PushLocalFrame/PopLocalFrame. Several resource leaks
were removed.
Expand Down
2 changes: 1 addition & 1 deletion jpype/__init__.py
Expand Up @@ -31,7 +31,7 @@
from ._jclass import _JavaObject as JavaObject
from ._jclass import _JavaClass as JavaClass

__version_info__ = (0, 6, 2)
__version_info__ = (0, 6, 3)
__version__ = ".".join(str(i) for i in __version_info__)

def JIterator(it):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -182,7 +182,7 @@ def build_extensions(self):

setup(
name='JPype1',
version='0.6.2',
version='0.6.3',
description='A Python to Java bridge.',
long_description=(read_utf8('README.rst') + '\n\n' +
read_utf8('doc/CHANGELOG.rst') + '\n\n' +
Expand Down

0 comments on commit d5c0814

Please sign in to comment.