diff --git a/changelog.md b/changelog.md index 31190c95cf6b4f987d89661b22584b2b09e5edd3_Y2hhbmdlbG9nLm1k..660da4a8bd7cbe0622d3307a99f7de9a4ac7fb38_Y2hhbmdlbG9nLm1k 100644 --- a/changelog.md +++ b/changelog.md @@ -1,6 +1,15 @@ PyMQI changelog --------------- +* **1.12.0** (2020-07-01) + + * All MQ constants can be now imported from a new module called **pymqi.const**, e.g. `from pymqi.const import MQCAMO_LAST_USED` + * Added int64 (CFIN64), int64 list (CFIL64) and group (CFGR) support to raw PCF, + making it possible to read PFC messages from queues like `SYSTEM.ADMIN.STATISTICS.QUEUE`. + * Corrected typing import and raw PCF for Python 2.7 + * Corrected PCF command message expiry + * Thanks to @JochemGit, @AlexandreYang and @Skyler-Altol for the assistance in preparing this release + * **1.11.0** (2020-06-11) * Moved from MQAI to raw PCF, making it possible to use PCF commands on z/OS in addition to other systems diff --git a/code/pymqi/__init__.py b/code/pymqi/__init__.py index 31190c95cf6b4f987d89661b22584b2b09e5edd3_Y29kZS9weW1xaS9fX2luaXRfXy5weQ==..660da4a8bd7cbe0622d3307a99f7de9a4ac7fb38_Y29kZS9weW1xaS9fX2luaXRfXy5weQ== 100644 --- a/code/pymqi/__init__.py +++ b/code/pymqi/__init__.py @@ -140,7 +140,7 @@ CMQZC = CMQZC unicode = object() -__version__ = '1.11.0' +__version__ = '1.12.0' __mqlevels__ = pymqe.__mqlevels__ __mqbuild__ = pymqe.__mqbuild__ diff --git a/code/pymqi/pymqe.c b/code/pymqi/pymqe.c index 31190c95cf6b4f987d89661b22584b2b09e5edd3_Y29kZS9weW1xaS9weW1xZS5j..660da4a8bd7cbe0622d3307a99f7de9a4ac7fb38_Y29kZS9weW1xaS9weW1xZS5j 100644 --- a/code/pymqi/pymqe.c +++ b/code/pymqi/pymqe.c @@ -45,7 +45,7 @@ * */ -static char __version__[] = "1.11.0"; +static char __version__[] = "1.12.0"; static char pymqe_doc[] = " \ pymqe - A Python MQ Extension. This presents a low-level Python \ diff --git a/setup.py b/setup.py index 31190c95cf6b4f987d89661b22584b2b09e5edd3_c2V0dXAucHk=..660da4a8bd7cbe0622d3307a99f7de9a4ac7fb38_c2V0dXAucHk= 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from distutils import spawn from struct import calcsize -version = '1.11.1' +version = '1.12.0' # Build either in bindings or client mode. bindings_mode = 0