summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorMatt Davis <mrd@redhat.com>2021-09-17 15:09:29 -0700
committerMatt Davis <mrd@redhat.com>2021-09-17 15:09:29 -0700
commit38757ba567a0030bf7f1ddd3d1f3269335771ed8 (patch)
tree956d60b4819af73260bfae29fd392b1b46bbfb2a /c
parent4d7e8223ff1059ec5ba363b97d521d80b64dd182 (diff)
downloadcffi-38757ba567a0030bf7f1ddd3d1f3269335771ed8.tar.gz
Bump version to 1.15.0rc1
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 3e0351b..e8551e2 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.6"
+#define CFFI_VERSION "1.15.0rc1"
#ifdef MS_WIN32
#include <windows.h>
diff --git a/c/test_c.py b/c/test_c.py
index cd8def7..22aab0b 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.6", ("This test_c.py file is for testing a version"
+assert __version__ == "1.15.0rc1", ("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,):