Skip to content

Commit df2d0f5

Browse files
committed
Version bump to 0.4.2
1 parent 4a53999 commit df2d0f5

21 files changed

+55
-56
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ an array of integers.
9090

9191
| Implementations | Version |
9292
|-----------------|----------|
93-
| `v2` | `0.4.1+` |
93+
| `v2` | `0.4.2+` |
9494

9595
A new transformer API has been proposed to handle objects written with a custom
9696
Java writer.

javaobj/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
1414
:authors: Volodymyr Buell, Thomas Calmant
1515
:license: Apache License 2.0
16-
:version: 0.4.1
16+
:version: 0.4.2
1717
:status: Alpha
1818
1919
..
2020
21-
Copyright 2020 Thomas Calmant
21+
Copyright 2021 Thomas Calmant
2222
2323
Licensed under the Apache License, Version 2.0 (the "License");
2424
you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

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

4747
# Documentation strings format

javaobj/constants.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
55
:authors: Thomas Calmant
66
:license: Apache License 2.0
7-
:version: 0.4.1
7+
:version: 0.4.2
88
:status: Alpha
99
1010
..
1111
12-
Copyright 2020 Thomas Calmant
12+
Copyright 2021 Thomas Calmant
1313
1414
Licensed under the Apache License, Version 2.0 (the "License");
1515
you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@
3838
)
3939

4040
# Module version
41-
__version_info__ = (0, 4, 1)
41+
__version_info__ = (0, 4, 2)
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.1
14+
:version: 0.4.2
1515
:status: Alpha
1616
"""
1717

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

2222

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

2727
# Documentation strings format

javaobj/utils.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
88
:authors: Thomas Calmant
99
:license: Apache License 2.0
10-
:version: 0.4.1
10+
:version: 0.4.2
1111
:status: Alpha
1212
1313
..
1414
15-
Copyright 2020 Thomas Calmant
15+
Copyright 2021 Thomas Calmant
1616
1717
Licensed under the Apache License, Version 2.0 (the "License");
1818
you may not use this file except in compliance with the License.
@@ -41,7 +41,7 @@
4141
# ------------------------------------------------------------------------------
4242

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

4747
# Documentation strings format

javaobj/v1/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44
55
:authors: Thomas Calmant
66
:license: Apache License 2.0
7-
:version: 0.4.1
7+
:version: 0.4.2
88
:status: Alpha
99
1010
..
1111
12-
Copyright 2020 Thomas Calmant
12+
Copyright 2021 Thomas Calmant
1313
1414
Licensed under the Apache License, Version 2.0 (the "License");
1515
you may not use this file except in compliance with the License.
@@ -37,7 +37,7 @@
3737
# ------------------------------------------------------------------------------
3838

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

4343
# Documentation strings format

javaobj/v1/beans.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
66
:authors: Volodymyr Buell, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.1
8+
:version: 0.4.2
99
:status: Alpha
1010
1111
..
1212
13-
Copyright 2020 Thomas Calmant
13+
Copyright 2021 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.
@@ -44,7 +44,7 @@
4444
)
4545

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

5050
# Documentation strings format

javaobj/v1/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
1414
:authors: Volodymyr Buell, Thomas Calmant
1515
:license: Apache License 2.0
16-
:version: 0.4.1
16+
:version: 0.4.2
1717
:status: Alpha
1818
1919
..
2020
21-
Copyright 2020 Thomas Calmant
21+
Copyright 2021 Thomas Calmant
2222
2323
Licensed under the Apache License, Version 2.0 (the "License");
2424
you may not use this file except in compliance with the License.
@@ -61,7 +61,7 @@
6161
)
6262

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

6767
# Documentation strings format

javaobj/v1/marshaller.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@
1313
1414
:authors: Volodymyr Buell, Thomas Calmant
1515
:license: Apache License 2.0
16-
:version: 0.4.1
16+
:version: 0.4.2
1717
:status: Alpha
1818
1919
..
2020
21-
Copyright 2020 Thomas Calmant
21+
Copyright 2021 Thomas Calmant
2222
2323
Licensed under the Apache License, Version 2.0 (the "License");
2424
you may not use this file except in compliance with the License.
@@ -76,7 +76,7 @@
7676

7777

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

8282
# Documentation strings format

javaobj/v1/transformers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
66
:authors: Volodymyr Buell, Thomas Calmant
77
:license: Apache License 2.0
8-
:version: 0.4.1
8+
:version: 0.4.2
99
:status: Alpha
1010
1111
..
1212
13-
Copyright 2020 Thomas Calmant
13+
Copyright 2021 Thomas Calmant
1414
1515
Licensed under the Apache License, Version 2.0 (the "License");
1616
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)