summaryrefslogtreecommitdiff
path: root/cffi
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2019-02-26 15:58:08 +0100
committerArmin Rigo <arigo@tunes.org>2019-02-26 15:58:08 +0100
commit14b80924b058f42a4ee8b80d5c837b9395211c3c (patch)
tree945e8110ea05ac76e8b83459e6b0a1a111c09f4a /cffi
parenta694ab480d1608d970cb73936909771b3ffeb16a (diff)
downloadcffi-14b80924b058f42a4ee8b80d5c837b9395211c3c.tar.gz
bump version number to 1.12.2
Diffstat (limited to 'cffi')
-rw-r--r--cffi/__init__.py4
-rw-r--r--cffi/_embedding.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/cffi/__init__.py b/cffi/__init__.py
index 0e35518..5ebb64b 100644
--- a/cffi/__init__.py
+++ b/cffi/__init__.py
@@ -5,8 +5,8 @@ from .api import FFI
from .error import CDefError, FFIError, VerificationError, VerificationMissing
from .error import PkgConfigError
-__version__ = "1.12.1"
-__version_info__ = (1, 12, 1)
+__version__ = "1.12.2"
+__version_info__ = (1, 12, 2)
# The verifier module file names are based on the CRC32 of a string that
# contains the following version number. It may be older than __version__
diff --git a/cffi/_embedding.h b/cffi/_embedding.h
index a1a7c86..3953cd7 100644
--- a/cffi/_embedding.h
+++ b/cffi/_embedding.h
@@ -221,7 +221,7 @@ static int _cffi_initialize_python(void)
if (f != NULL && f != Py_None) {
PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME
- "\ncompiled with cffi version: 1.12.1"
+ "\ncompiled with cffi version: 1.12.2"
"\n_cffi_backend module: ", f);
modules = PyImport_GetModuleDict();
mod = PyDict_GetItemString(modules, "_cffi_backend");