summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorMatt Davis <mrd@redhat.com>2021-10-04 19:21:58 -0700
committerMatt Davis <mrd@redhat.com>2021-10-04 19:21:58 -0700
commit794159d44c1e8d8fdc2db6d06be97941fa7892de (patch)
tree6ed8d19d9ed068d372a8ed6e22766c24b5a57861 /c
parent146be2f3da7b83a1091402c518963a5d4fe5df1d (diff)
downloadcffi-794159d44c1e8d8fdc2db6d06be97941fa7892de.tar.gz
Bump version to 1.15.0rc2
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 e8551e2..c2bd16c 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.15.0rc1"
+#define CFFI_VERSION "1.15.0rc2"
#ifdef MS_WIN32
#include <windows.h>
diff --git a/c/test_c.py b/c/test_c.py
index 22aab0b..bcb5f32 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.15.0rc1", ("This test_c.py file is for testing a version"
+assert __version__ == "1.15.0rc2", ("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,):