Skip to content

Commit f5355a1

Browse files
committed
Added missing version headers
1 parent 7d26466 commit f5355a1

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

javaobj/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,9 @@
3838

3939
# ------------------------------------------------------------------------------
4040

41+
# Module version
42+
__version_info__ = (0, 3, 0)
43+
__version__ = ".".join(str(x) for x in __version_info__)
44+
4145
# Documentation strings format
4246
__docformat__ = "restructuredtext en"

javaobj/modifiedutf8.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,17 @@
1313
"""
1414

1515

16-
NAME = "mutf8" # not cesu-8, which uses a different zero-byte
16+
# Module version
17+
__version_info__ = (0, 3, 0)
18+
__version__ = ".".join(str(x) for x in __version_info__)
19+
20+
# Documentation strings format
21+
__docformat__ = "restructuredtext en"
22+
23+
# Encoding name: not cesu-8, which uses a different zero-byte
24+
NAME = "mutf8"
25+
26+
# ------------------------------------------------------------------------------
1727

1828

1929
class DecodeMap(object):

0 commit comments

Comments
 (0)