From a5a85ca5a43ac73814df407e5de41607a9828b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Guimar=C3=A3es?= Date: Mon, 12 Mar 2018 22:13:48 +0100 Subject: [PATCH] bumps wolfssl version to v3.14.0a --- src/wolfcrypt/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wolfcrypt/__init__.py b/src/wolfcrypt/__init__.py index e65143d..1a9935f 100644 --- a/src/wolfcrypt/__init__.py +++ b/src/wolfcrypt/__init__.py @@ -24,7 +24,7 @@ __uri__ = "https://github.com/wolfssl/wolfcrypt-py" # When bumping the C library version, reset the POST count to 0 -__wolfssl_version__ = "v3.13.0-stable" +__wolfssl_version__ = "v3.14.0a" # We're using implicit post releases [PEP 440] to bump package version # while maintaining the C library version intact for better reference. @@ -32,7 +32,7 @@ __wolfssl_version__ = "v3.13.0-stable" # # MAJOR.MINOR.BUILD-POST -__version__ = __wolfssl_version__[1:].replace("stable", "1") +__version__ = __wolfssl_version__[1:].replace("a", "-0") __author__ = "wolfSSL Inc." __email__ = "info@wolfssl.com"