summaryrefslogtreecommitdiff
path: root/c
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 /c
parentaf21ee113f8f95fdf1e9947f16a1d61e0ab1bc63 (diff)
downloadcffi-59da87ae09cc9f0437bcb8c0f7b00cbcf5072346.tar.gz
bump version to 1.14.3
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 5693eaf..88e8379 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.2"
+#define CFFI_VERSION "1.14.3"
#ifdef MS_WIN32
#include <windows.h>
diff --git a/c/test_c.py b/c/test_c.py
index 14d3f66..fa24676 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.2", ("This test_c.py file is for testing a version"
+assert __version__ == "1.14.3", ("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,):