diff options
author | Armin Rigo <arigo@tunes.org> | 2020-11-24 11:24:02 +0100 |
---|---|---|
committer | Armin Rigo <arigo@tunes.org> | 2020-11-24 11:24:02 +0100 |
commit | 77a64dba7fcc20970d17d0ba9eda6cff3e290487 (patch) | |
tree | 8ab3b640b8242f9902f2e53a5ec3f277608b2370 /c | |
parent | 55f18fb97be7757995755bf4e80f60f219676e23 (diff) | |
download | cffi-77a64dba7fcc20970d17d0ba9eda6cff3e290487.tar.gz |
bump version to 1.14.4
Diffstat (limited to 'c')
-rw-r--r-- | c/_cffi_backend.c | 2 | ||||
-rw-r--r-- | c/test_c.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c index 81d2651..1c2ca2d 100644 --- a/c/_cffi_backend.c +++ b/c/_cffi_backend.c @@ -2,7 +2,7 @@ #include <Python.h> #include "structmember.h" -#define CFFI_VERSION "1.14.3" +#define CFFI_VERSION "1.14.4" #ifdef MS_WIN32 #include <windows.h> diff --git a/c/test_c.py b/c/test_c.py index bb6b586..d039edf 100644 --- a/c/test_c.py +++ b/c/test_c.py @@ -17,7 +17,7 @@ from _cffi_backend import __version__ # ____________________________________________________________ import sys -assert __version__ == "1.14.3", ("This test_c.py file is for testing a version" +assert __version__ == "1.14.4", ("This test_c.py file is for testing a version" " of cffi that differs from the one that we" " get from 'import _cffi_backend'") if sys.version_info < (3,): |