From a0e56ff79df37652208002dba9f37e29f451c8ac Mon Sep 17 00:00:00 2001 From: Michael Greene Date: Wed, 23 Nov 2022 18:30:42 -0800 Subject: [PATCH] v0.6.0 --- docs/source/changelog.rst | 28 ++++++++++++++++++++++++++++ setup.cfg | 2 +- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 6b15108..6454614 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -4,6 +4,34 @@ Changelog ********* +v0.6.0 +====== + +Released: Nov 23, 2022 + +.. note:: + +New Features +------------ +* added the ability to ignore usage flags + +Bugs Fixed +---------- +* accept passphrases formatted as ``bytes`` +* default to 3DES when no preferred algorithms are supported +* generate TZ-aware datetime objects +* works with Cryptography 38 + +Other Changes +------------- + +* dropped support for Python 2 and Python 3 <= 3.5 +* renamed ``PGPOpenSSLCipherNotSupported`` to ``PGPOpenSSLCipherNotSupportedError`` +* renamed ``PGPOpenSSLCipherNotSupported`` to ``PGPOpenSSLCipherNotSupportedError`` +* renamed ``PGPInsecureCipher`` to ``PGPInsecureCipherError`` +* fixed a bunch of typos +* improve code style, increase consistency + v0.5.4 ====== diff --git a/setup.cfg b/setup.cfg index 09dadd6..af26cfd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = PGPy -version = 0.6.0-dev +version = 0.6.0 author = Michael Greene author_email = mgreene@securityinnovation.com maintainer = Security Innovation