Skip to content

Commit

Permalink
1.0.0b16 (2020-10-31)
Browse files Browse the repository at this point in the history
---------------------
  • Loading branch information
karpierz committed Nov 1, 2020
1 parent e5f227e commit bdb59e7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
@@ -1,7 +1,7 @@
Changelog
=========

1.0.0b15 (2020-10-31)
1.0.0b16 (2020-10-31)
---------------------
- Add support for Python 3.9.
- General update, improvements and cleanup.
Expand Down
1 change: 1 addition & 0 deletions README.rst
Expand Up @@ -10,6 +10,7 @@ Overview
| It is an effort to allow python programs full access to Java JNI API.
`PyPI record`_.

`Documentation`_.

| |package_bold| is a lightweight Python package, based on the *ctypes*, or *cffi* library,
Expand Down
2 changes: 1 addition & 1 deletion src/jni/__about__.py
Expand Up @@ -11,7 +11,7 @@
__summary__ = "Python bridge for the Java Native Interface."
__uri__ = "https://pypi.org/project/jni/"
__version_info__ = type("version_info", (), dict(major=1, minor=0, micro=0,
releaselevel="beta", serial=15))
releaselevel="beta", serial=16))
__version__ = "{0.major}.{0.minor}.{0.micro}{1}{2}".format(__version_info__,
dict(alpha="a", beta="b", candidate="rc", final="",
post=".post", dev=".dev")[__version_info__.releaselevel],
Expand Down

0 comments on commit bdb59e7

Please sign in to comment.