Bump version: 1.2.2 → 1.2.3
parent
857cb279bc
commit
8ffe6bd527
|
|
@ -1,5 +1,5 @@
|
||||||
[bumpversion]
|
[bumpversion]
|
||||||
current_version = 1.2.2
|
current_version = 1.2.3
|
||||||
commit = True
|
commit = True
|
||||||
tag = True
|
tag = True
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -170,6 +170,7 @@ Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
- Next version - unreleased
|
- Next version - unreleased
|
||||||
|
- 1.2.3 - 2020-06-12
|
||||||
|
|
||||||
- Make pip install for Python 2 work by changing JPype1 requirement to older
|
- Make pip install for Python 2 work by changing JPype1 requirement to older
|
||||||
version
|
version
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
# License along with JayDeBeApi. If not, see
|
# License along with JayDeBeApi. If not, see
|
||||||
# <http://www.gnu.org/licenses/>.
|
# <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
__version_info__ = (1, 2, 2)
|
__version_info__ = (1, 2, 3)
|
||||||
__version__ = ".".join(str(i) for i in __version_info__)
|
__version__ = ".".join(str(i) for i in __version_info__)
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -27,7 +27,7 @@ install_requires = [ 'JPype1 ; python_version > "2.7" and platform_python_implem
|
||||||
setup(
|
setup(
|
||||||
#basic package data
|
#basic package data
|
||||||
name = 'JayDeBeApi',
|
name = 'JayDeBeApi',
|
||||||
version = '1.2.2',
|
version = '1.2.3',
|
||||||
author = 'Bastian Bowe',
|
author = 'Bastian Bowe',
|
||||||
author_email = 'bastian.dev@gmail.com',
|
author_email = 'bastian.dev@gmail.com',
|
||||||
license = 'GNU LGPL',
|
license = 'GNU LGPL',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue