summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2021-06-20 21:16:33 +0200
committerArmin Rigo <arigo@tunes.org>2021-06-20 21:16:33 +0200
commit745d205fa3dc04fb0daed705c773c61852c1deb1 (patch)
tree5b29d2c3ec346230070bcbe3460553dc40291efe /c
parent8f7155f8820223ed46fb4259fc688abad5ac9c25 (diff)
downloadcffi-745d205fa3dc04fb0daed705c773c61852c1deb1.tar.gz
Bump version to 1.14.6
Diffstat (limited to 'c')
-rw-r--r--c/_cffi_backend.c2
-rw-r--r--c/test_c.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/c/_cffi_backend.c b/c/_cffi_backend.c
index 6652803..3e0351b 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.5"
+#define CFFI_VERSION "1.14.6"
#ifdef MS_WIN32
#include <windows.h>
diff --git a/c/test_c.py b/c/test_c.py
index 6c2e5a7..cd8def7 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.5", ("This test_c.py file is for testing a version"
+assert __version__ == "1.14.6", ("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,):