From 42ef6fdab1ff157592a81b88c1bfd77819804326 Mon Sep 17 00:00:00 2001 From: Mathias Laurin Date: Thu, 7 Apr 2022 21:13:04 +0200 Subject: [PATCH] ci: Increate version to 2.0.0 --- ChangeLog | 2 +- docs/source/conf.py | 2 +- src/mbedtls/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4aa01dae..f62310ab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -[next] +[2.0.0] - 2022-04-07 * tls: Context and TLSWrappedBuffer are now entirely separated. ** The contexts are now picklable. diff --git a/docs/source/conf.py b/docs/source/conf.py index ae6cd30f..5dba0c3e 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -23,7 +23,7 @@ author = "Mathias Laurin" # The full version, including alpha/beta/rc tags -release = "1.7.0" +release = "2.0.0" # -- General configuration --------------------------------------------------- diff --git a/src/mbedtls/__init__.py b/src/mbedtls/__init__.py index 0afed8de..ed13c00e 100644 --- a/src/mbedtls/__init__.py +++ b/src/mbedtls/__init__.py @@ -16,7 +16,7 @@ import mbedtls.version as version import mbedtls.x509 as x509 -__version__ = "1.7.0" +__version__ = "2.0.0" __all__ = ( "cipher",