summaryrefslogtreecommitdiff
path: root/cffi/__init__.py
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2016-01-01 12:40:20 +0100
committerArmin Rigo <arigo@tunes.org>2016-01-01 12:40:20 +0100
commitb146b9c494e7dfb5c9f50640d92842661d735c56 (patch)
tree97ffc86b18689c60f0e82bb86fa5fea83bb155ec /cffi/__init__.py
parent53ac81fad3baa97fd7610c1b524ebed6f8dab3d8 (diff)
downloadcffi-b146b9c494e7dfb5c9f50640d92842661d735c56.tar.gz
Update the version numbers and make sure the _cffi_backend module is
a version that supports embedding!
Diffstat (limited to 'cffi/__init__.py')
-rw-r--r--cffi/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cffi/__init__.py b/cffi/__init__.py
index 644744c..637a4f1 100644
--- a/cffi/__init__.py
+++ b/cffi/__init__.py
@@ -4,8 +4,8 @@ __all__ = ['FFI', 'VerificationError', 'VerificationMissing', 'CDefError',
from .api import FFI, CDefError, FFIError
from .ffiplatform import VerificationError, VerificationMissing
-__version__ = "1.4.2"
-__version_info__ = (1, 4, 2)
+__version__ = "1.4.3"
+__version_info__ = (1, 4, 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__