Skip to content

Commit 1e4b27a

Browse files
committed
Bump to version 0.4.3
1 parent c2165eb commit 1e4b27a

20 files changed

+37
-36
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.4.2
16+
:version: 0.4.3
1717
:status: Alpha
1818
1919
..
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

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

4747
# Documentation strings format

javaobj/constants.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
:authors: Thomas Calmant
66
:license: Apache License 2.0
7-
:version: 0.4.2
7+
:version: 0.4.3
88
:status: Alpha
99
1010
..
@@ -38,7 +38,7 @@
3838
)
3939

4040
# Module version
41-
__version_info__ = (0, 4, 2)
41+
__version_info__ = (0, 4, 3)
4242
__version__ = ".".join(str(x) for x in __version_info__)
4343

4444
# Documentation strings format

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.4.2
14+
:version: 0.4.3
1515
:status: Alpha
1616
"""
1717

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

2222

2323
# Module version
24-
__version_info__ = (0, 4, 2)
24+
__version_info__ = (0, 4, 3)
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.4.2
10+
:version: 0.4.3
1111
:status: Alpha
1212
1313
..
@@ -43,7 +43,7 @@
4343
# ------------------------------------------------------------------------------
4444

4545
# Module version
46-
__version_info__ = (0, 4, 2)
46+
__version_info__ = (0, 4, 3)
4747
__version__ = ".".join(str(x) for x in __version_info__)
4848

4949
# Documentation strings format

javaobj/v1/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
:authors: Thomas Calmant
66
:license: Apache License 2.0
7-
:version: 0.4.2
7+
:version: 0.4.3
88
:status: Alpha
99
1010
..
@@ -37,7 +37,7 @@
3737
# ------------------------------------------------------------------------------
3838

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

4343
# Documentation strings format

javaobj/v1/beans.py

Lines changed: 2 additions & 2 deletions
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.4.2
8+
:version: 0.4.3
99
:status: Alpha
1010
1111
..
@@ -44,7 +44,7 @@
4444
)
4545

4646
# Module version
47-
__version_info__ = (0, 4, 2)
47+
__version_info__ = (0, 4, 3)
4848
__version__ = ".".join(str(x) for x in __version_info__)
4949

5050
# Documentation strings format

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.4.2
16+
:version: 0.4.3
1717
:status: Alpha
1818
1919
..
@@ -62,7 +62,7 @@
6262
)
6363

6464
# Module version
65-
__version_info__ = (0, 4, 2)
65+
__version_info__ = (0, 4, 3)
6666
__version__ = ".".join(str(x) for x in __version_info__)
6767

6868
# 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.4.2
16+
:version: 0.4.3
1717
:status: Alpha
1818
1919
..
@@ -76,7 +76,7 @@
7676

7777

7878
# Module version
79-
__version_info__ = (0, 4, 2)
79+
__version_info__ = (0, 4, 3)
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.4.2
8+
:version: 0.4.3
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.4.2
16+
:version: 0.4.3
1717
:status: Alpha
1818
1919
..
@@ -72,7 +72,7 @@
7272
__all__ = ("JavaObjectUnmarshaller",)
7373

7474
# Module version
75-
__version_info__ = (0, 4, 2)
75+
__version_info__ = (0, 4, 3)
7676
__version__ = ".".join(str(x) for x in __version_info__)
7777

7878
# Documentation strings format

0 commit comments

Comments
 (0)