summaryrefslogtreecommitdiff
path: root/cffi
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2020-09-15 07:50:21 +0200
committerArmin Rigo <arigo@tunes.org>2020-09-15 07:50:21 +0200
commit59da87ae09cc9f0437bcb8c0f7b00cbcf5072346 (patch)
tree4ed48a048a19220425080e4f9d8e6448ae1348e2 /cffi
parentaf21ee113f8f95fdf1e9947f16a1d61e0ab1bc63 (diff)
downloadcffi-59da87ae09cc9f0437bcb8c0f7b00cbcf5072346.tar.gz
bump version to 1.14.3
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 acf959c..264afa1 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.14.2"
-__version_info__ = (1, 14, 2)
+__version__ = "1.14.3"
+__version_info__ = (1, 14, 3)
# 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 456dc52..fdce222 100644
--- a/cffi/_embedding.h
+++ b/cffi/_embedding.h
@@ -224,7 +224,7 @@ static int _cffi_initialize_python(void)
if (f != NULL && f != Py_None) {
PyFile_WriteString("\nFrom: " _CFFI_MODULE_NAME
- "\ncompiled with cffi version: 1.14.2"
+ "\ncompiled with cffi version: 1.14.3"
"\n_cffi_backend module: ", f);
modules = PyImport_GetModuleDict();
mod = PyDict_GetItemString(modules, "_cffi_backend");