summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorArmin Rigo <arigo@tunes.org>2021-02-11 07:33:25 +0100
committerArmin Rigo <arigo@tunes.org>2021-02-11 07:33:25 +0100
commit64c832a8f00a9776bf93d1c99b878365fded292e (patch)
treecab2c067aed464b027be8f70a822f0b8db7e4841 /c
parent7fbe99abfa923d052e85964dba18802bcb3714f0 (diff)
downloadcffi-64c832a8f00a9776bf93d1c99b878365fded292e.tar.gz
Bump version to 1.14.5 and add whatsnew entry
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 a40ee34..23304d3 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.4"
+#define CFFI_VERSION "1.14.5"
#ifdef MS_WIN32
#include <windows.h>
diff --git a/c/test_c.py b/c/test_c.py
index 9c4ab4b..69ad15e 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.4", ("This test_c.py file is for testing a version"
+assert __version__ == "1.14.5", ("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,):