# HG changeset patch
# User Dariusz Suchojad <dsuch-github@m.zato.io>
# Date 1600420203 -7200
#      Fri Sep 18 11:10:03 2020 +0200
# Node ID 660da4a8bd7cbe0622d3307a99f7de9a4ac7fb38
# Parent  31190c95cf6b4f987d89661b22584b2b09e5edd3
GH #229 - Pushing 1.12.0 version strings.

diff --git a/changelog.md b/changelog.md
--- 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
--- 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
--- 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
--- 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