From a4ed6df859da79228d4ae3fa8f699b20373301a6 Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Mon, 8 Apr 2019 14:57:42 -0700 Subject: [PATCH 1/2] add initial changelog with info for 3.1.0 --- CHANGELOG.rst | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 CHANGELOG.rst diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 00000000..46dc12b1 --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,34 @@ +--------- +Changelog +--------- + +3.1.0 -- 2019-??-?? +^^^^^^^^^^^^^^^^^^^ + +Major +""""" + +* Isolate and flesh out cryptographic backends to enable independent operation. + `#114 `_ + `#129 `_ +* Remove pyca/cryptography backend's dependency on python-ecdsa. + `#117 `_ +* Remove pycrypto/dome backends' dependency on python-rsa. + `#121 `_ +* Make pyca/cryptography backend the preferred backend if multiple backends are present. + `#122 `_ + +Bugfixes +"""""""" + +* Fix invalid RSA private key PKCS8 encoding by python-rsa backend. + `#120 `_ + +Housekeeping +"""""""""""" + +* Test each cryptographic backend independently in CI. + `#114 `_ + `#129 `_ +* Add flake8 checks in CI. +* Add CPython 3.7 and PyPy 3.5 testing in CI. From acf9c9d3d3cdc7aad2274c8c5f9f18365cbcdbba Mon Sep 17 00:00:00 2001 From: mattsb42-aws Date: Tue, 9 Apr 2019 11:32:20 -0700 Subject: [PATCH 2/2] add PR that fixes CI to CI update changelog --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 46dc12b1..4d7654df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -30,5 +30,6 @@ Housekeeping * Test each cryptographic backend independently in CI. `#114 `_ `#129 `_ + `#135 `_ * Add flake8 checks in CI. * Add CPython 3.7 and PyPy 3.5 testing in CI.