diff --git a/Changes.txt b/Changes.txt index ebb034a..88d21d2 100644 --- a/Changes.txt +++ b/Changes.txt @@ -1,6 +1,13 @@ History ======= +1.5.17 - October 2024, Ludovic Rousseau + - Add AES in counter mode support (CKM_AES_CTR) + - Add simple derivation mechanisms support (CMK_CONCATENATE_*) + - Fix reference counting in PyKCS11Lib.load() + - remove python 2 support from ckbytelist + - minor improvements + 1.5.16 - May 2024, Ludovic Rousseau - add support of CKA_MODIFIABLE and CKA_DESTROYABLE attributes - minor improvements diff --git a/docs/conf.py b/docs/conf.py index fbf2b8e..63bb1d2 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = '1.5' # The full version, including alpha/beta/rc tags -release = '1.5.16' +release = '1.5.17' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 0fd0fbd..b18d8c8 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def run(self): setup( name="PyKCS11", - version="1.5.16", + version="1.5.17", description="A Full PKCS#11 wrapper for Python", keywords="crypto,pki,pkcs11,c++", classifiers=classifiers,