Skip to content

Commit bc33bda

Browse files
committed
Bumped version to 0.4.0
1 parent 79879b5 commit bc33bda

20 files changed

+129
-20
lines changed

javaobj/__init__.py

Lines changed: 2 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.3.0
16+
:version: 0.4.0
1717
:status: Alpha
1818
1919
..
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

4343
# Module version
44-
__version_info__ = (0, 3, 0)
44+
__version_info__ = (0, 4, 0)
4545
__version__ = ".".join(str(x) for x in __version_info__)
4646

4747
# Documentation strings format

javaobj/constants.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626

2727
import enum
2828

29+
# ------------------------------------------------------------------------------
2930

3031
__all__ = (
3132
"PRIMITIVE_TYPES",
@@ -36,6 +37,15 @@
3637
"StreamCodeDebug",
3738
)
3839

40+
# Module version
41+
__version_info__ = (0, 4, 0)
42+
__version__ = ".".join(str(x) for x in __version_info__)
43+
44+
# Documentation strings format
45+
__docformat__ = "restructuredtext en"
46+
47+
# ------------------------------------------------------------------------------
48+
3949

4050
class StreamConstants(enum.IntEnum):
4151
"""

javaobj/modifiedutf8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
1212
:authors: Scott Stephens (@swstephe), @guywithface
1313
:license: Apache License 2.0
14-
:version: 0.3.0
14+
:version: 0.4.0
1515
:status: Alpha
1616
"""
1717

@@ -21,7 +21,7 @@
2121

2222

2323
# Module version
24-
__version_info__ = (0, 3, 0)
24+
__version_info__ = (0, 4, 0)
2525
__version__ = ".".join(str(x) for x in __version_info__)
2626

2727
# Documentation strings format

javaobj/utils.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
:authors: Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.3.0
10+
:version: 0.4.0
1111
:status: Alpha
1212
1313
..
@@ -40,7 +40,7 @@
4040
# ------------------------------------------------------------------------------
4141

4242
# Module version
43-
__version_info__ = (0, 3, 0)
43+
__version_info__ = (0, 4, 0)
4444
__version__ = ".".join(str(x) for x in __version_info__)
4545

4646
# Documentation strings format

javaobj/v1/__init__.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,12 @@
3333
JavaObjectUnmarshaller,
3434
)
3535
from .transformers import DefaultObjectTransformer
36+
37+
# ------------------------------------------------------------------------------
38+
39+
# Module version
40+
__version_info__ = (0, 4, 0)
41+
__version__ = ".".join(str(x) for x in __version_info__)
42+
43+
# Documentation strings format
44+
__docformat__ = "restructuredtext en"

javaobj/v1/beans.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:authors: Volodymyr Buell, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.3.0
8+
:version: 0.4.0
99
:status: Alpha
1010
1111
..
@@ -32,6 +32,8 @@
3232

3333
from ..utils import UNICODE_TYPE
3434

35+
# ------------------------------------------------------------------------------
36+
3537
__all__ = (
3638
"JavaArray",
3739
"JavaByteArray",
@@ -41,6 +43,15 @@
4143
"JavaString",
4244
)
4345

46+
# Module version
47+
__version_info__ = (0, 4, 0)
48+
__version__ = ".".join(str(x) for x in __version_info__)
49+
50+
# Documentation strings format
51+
__docformat__ = "restructuredtext en"
52+
53+
# ------------------------------------------------------------------------------
54+
4455

4556
class JavaClass(object):
4657
"""

javaobj/v1/core.py

Lines changed: 2 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.3.0
16+
:version: 0.4.0
1717
:status: Alpha
1818
1919
..
@@ -61,7 +61,7 @@
6161
)
6262

6363
# Module version
64-
__version_info__ = (0, 3, 0)
64+
__version_info__ = (0, 4, 0)
6565
__version__ = ".".join(str(x) for x in __version_info__)
6666

6767
# Documentation strings format

javaobj/v1/marshaller.py

Lines changed: 2 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.3.0
16+
:version: 0.4.0
1717
:status: Alpha
1818
1919
..
@@ -76,7 +76,7 @@
7676

7777

7878
# Module version
79-
__version_info__ = (0, 3, 0)
79+
__version_info__ = (0, 4, 0)
8080
__version__ = ".".join(str(x) for x in __version_info__)
8181

8282
# Documentation strings format

javaobj/v1/transformers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
:authors: Volodymyr Buell, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.3.0
8+
:version: 0.4.0
99
:status: Alpha
1010
1111
..

javaobj/v1/unmarshaller.py

Lines changed: 2 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.3.0
16+
:version: 0.4.0
1717
:status: Alpha
1818
1919
..
@@ -75,7 +75,7 @@
7575
__all__ = ("JavaObjectUnmarshaller",)
7676

7777
# Module version
78-
__version_info__ = (0, 3, 0)
78+
__version_info__ = (0, 4, 0)
7979
__version__ = ".".join(str(x) for x in __version_info__)
8080

8181
# Documentation strings format

0 commit comments

Comments
 (0)