Skip to content

Commit 951b028

Browse files
committed
Bump version: 1.1.2_dev0 → 1.1.2
1 parent c1fb653 commit 951b028

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.1.2_dev0
2+
current_version = 1.1.2
33
commit = True
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\_(?P<release>[a-z]+)(?P<build>\d+))?

doc/CHANGELOG.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Changelog
44
This changelog *only* contains changes from the *first* pypi release (0.5.4.3) onwards.
55

66
Latest Changes:
7+
- **1.1.2 - 2020-10-23**
78
- **1.1.2_dev0 - 2020-10-21**
89

910
- Add importlib.util to address instability in Python importlib boot process.

jpype/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
__all__.extend(_jcustomizer.__all__)
5252
__all__.extend(_gui.__all__)
5353

54-
__version__ = "1.1.2_dev0"
54+
__version__ = "1.1.2"
5555
__version_info__ = __version__.split('.')
5656

5757

native/java/org/jpype/JPypeContext.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
public class JPypeContext
7070
{
7171

72-
public final String VERSION = "1.1.2_dev0";
72+
public final String VERSION = "1.1.2";
7373

7474
private static JPypeContext INSTANCE = new JPypeContext();
7575
// This is the C++ portion of the context.

native/python/pyjp_module.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -712,7 +712,7 @@ PyMODINIT_FUNC PyInit__jpype()
712712
// PyJPModule = module;
713713
Py_INCREF(module);
714714
PyJPModule = module;
715-
PyModule_AddStringConstant(module, "__version__", "1.1.2_dev0");
715+
PyModule_AddStringConstant(module, "__version__", "1.1.2");
716716

717717
// Initialize each of the python extension types
718718
PyJPClass_initType(module);

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
setup(
5555
name='JPype1',
56-
version='1.1.2_dev0',
56+
version='1.1.2',
5757
description='A Python to Java bridge.',
5858
long_description=open('README.rst').read(),
5959
license='License :: OSI Approved :: Apache Software License',

0 commit comments

Comments
 (0)