Browse Source

crypto: bump API_VERSION to 1.3_01

Thomas Waldmann 3 years ago
parent
commit
900a812e9c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      src/borg/crypto/low_level.pyx
  2. 1 1
      src/borg/helpers/checks.py

+ 1 - 1
src/borg/crypto/low_level.pyx

@@ -42,7 +42,7 @@ from cpython cimport PyMem_Malloc, PyMem_Free
 from cpython.buffer cimport PyBUF_SIMPLE, PyObject_GetBuffer, PyBuffer_Release
 from cpython.bytes cimport PyBytes_FromStringAndSize
 
-API_VERSION = '1.2_01'
+API_VERSION = '1.3_01'
 
 cdef extern from "openssl/crypto.h":
     int CRYPTO_memcmp(const void *a, const void *b, size_t len)

+ 1 - 1
src/borg/helpers/checks.py

@@ -31,7 +31,7 @@ def check_extension_modules():
         raise ExtensionModuleError
     if compress.API_VERSION != '1.2_02':
         raise ExtensionModuleError
-    if borg.crypto.low_level.API_VERSION != '1.2_01':
+    if borg.crypto.low_level.API_VERSION != '1.3_01':
         raise ExtensionModuleError
     if item.API_VERSION != '1.2_01':
         raise ExtensionModuleError