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