Skip to content

Commit 8472ed9

Browse files
committed
Version bump to 0.2.4
1 parent 17bbce9 commit 8472ed9

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This project is a fork of *python-javaobj* by Volodymyr Buell, originally from
3232
`Google Code <http://code.google.com/p/python-javaobj/>`_ and now hosted on
3333
`GitHub <https://github.com/vbuell/python-javaobj>`_.
3434

35-
This fork intends to work both on Python 2.7 and Python 3.2+.
35+
This fork intends to work both on Python 2.7 and Python 3.4+.
3636

3737
Compatibility Warning: object transformer
3838
-----------------------------------------

javaobj.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
:authors: Volodymyr Buell, Thomas Calmant
1515
:license: Apache License 2.0
16-
:version: 0.2.3
16+
:version: 0.2.4
1717
:status: Alpha
1818
1919
..
@@ -56,7 +56,7 @@
5656
# ------------------------------------------------------------------------------
5757

5858
# Module version
59-
__version_info__ = (0, 2, 3)
59+
__version_info__ = (0, 2, 4)
6060
__version__ = ".".join(str(x) for x in __version_info__)
6161

6262
# Documentation strings format
@@ -89,6 +89,7 @@ def log_error(message, ident=0):
8989

9090
# ------------------------------------------------------------------------------
9191

92+
9293
if sys.version_info[0] >= 3:
9394
# Python 3 interpreter : bytes & str
9495
def to_bytes(data, encoding="UTF-8"):

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
:authors: Volodymyr Buell, Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.2.3
10+
:version: 0.2.4
1111
:status: Alpha
1212
1313
..
@@ -37,7 +37,7 @@
3737
# ------------------------------------------------------------------------------
3838

3939
# Module version
40-
__version_info__ = (0, 2, 3)
40+
__version_info__ = (0, 2, 4)
4141
__version__ = ".".join(str(x) for x in __version_info__)
4242

4343
# Documentation strings format
@@ -74,8 +74,8 @@ def read(fname):
7474
"License :: OSI Approved :: Apache Software License",
7575
'Operating System :: OS Independent',
7676
'Programming Language :: Python :: 2.7',
77-
'Programming Language :: Python :: 3.3',
7877
'Programming Language :: Python :: 3.4',
7978
'Programming Language :: Python :: 3.5',
79+
'Programming Language :: Python :: 3.6',
8080
"Topic :: Software Development :: Libraries :: Python Modules",
8181
])

0 commit comments

Comments
 (0)