From b79e8d8d367ca3e21cc79f5ea634e20bac32a486 Mon Sep 17 00:00:00 2001 From: Mathias Laurin Date: Sat, 18 Jun 2022 23:44:08 +0200 Subject: [PATCH] ci: Increase version to 2.2.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 d8ec6793..e62b23d4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -[next] +[2.2.0] - 2022-06-18 * pk: Fix choice of the curve in ECC (PR 63). Before this, the curve chosen was ignored and the `ECC.generate()` would always diff --git a/docs/source/conf.py b/docs/source/conf.py index 2228d9eb..074f1b53 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -25,7 +25,7 @@ author = "Mathias Laurin" # The full version, including alpha/beta/rc tags -release = "2.1.0" +release = "2.2.0" # -- General configuration --------------------------------------------------- diff --git a/src/mbedtls/__init__.py b/src/mbedtls/__init__.py index 6b601004..e88fdd71 100644 --- a/src/mbedtls/__init__.py +++ b/src/mbedtls/__init__.py @@ -16,7 +16,7 @@ import mbedtls.version as version # type: ignore import mbedtls.x509 as x509 -__version__ = "2.1.0" +__version__ = "2.2.0" __all__ = ( "cipher",