summaryrefslogtreecommitdiff
path: root/cffi
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2018-07-07 17:37:28 +0200
committerArmin Rigo <arigo@tunes.org>2018-07-07 17:37:28 +0200
commit717d6365e82854940290f5e061106919a0562412 (patch)
tree453f2b9a0dd9468243c22bed8f067b9d3f456434 /cffi
parent89a6d8328ce9756d051ba4af827ef16b657b4574 (diff)
downloadcffi-717d6365e82854940290f5e061106919a0562412.tar.gz
Bump version to 1.12.0 (but not planning a release soon)
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 9cbfe37..ec479b7 100644
--- a/cffi/__init__.py
+++ b/cffi/__init__.py
@@ -4,8 +4,8 @@ __all__ = ['FFI', 'VerificationError', 'VerificationMissing', 'CDefError',
from .api import FFI
from .error import CDefError, FFIError, VerificationError, VerificationMissing
-__version__ = "1.11.5"
-__version_info__ = (1, 11, 5)
+__version__ = "1.12.0"
+__version_info__ = (1, 12, 0)
# 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 b24652e..fa2afca 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.11.5"
+ "\ncompiled with cffi version: 1.12.0"
"\n_cffi_backend module: ", f);
modules = PyImport_GetModuleDict();
mod = PyDict_GetItemString(modules, "_cffi_backend");