Skip to content

Commit

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

1.0.0b16 (2020-10-31)
1.0.0b17 (2020-11-10)
---------------------
- Add support for Python 3.9.
- General update, improvements and cleanup.
Expand Down
4 changes: 2 additions & 2 deletions MANIFEST.in
Expand Up @@ -14,6 +14,6 @@ graft src

graft tests

global-exclude \#/** \#*.*/**
global-exclude .build/** .build.*/**
global-exclude \#* \#*/**
global-exclude .build .build/** .build.* .build.*/**
global-exclude *.py[cod] __pycache__
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=16))
releaselevel="beta", serial=17))
__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 7c5931b

Please sign in to comment.