From edb215311b3a6d07317a3ec4cb1f6609e4afa076 Mon Sep 17 00:00:00 2001 From: Peter Hamilton Date: Wed, 2 Dec 2015 12:49:59 -0500 Subject: [PATCH] PyKMIP - Release 0.4.1 This update includes several new features: * Add support for the GetAttributeList operation * Add integration with Travis CI, Codecov/Coveralls, and Bandit * Add client/server failover support using multiple IP addresses * Add additional attribute unit tests * Update implementations of KMIP primitives * Reorganize server code to prepare for refactoring * Remove use of exec when handling library version numbers * Remove broken server script --- CHANGES.txt | 10 ++++++++++ kmip/version.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index d3ee35c..06ed01e 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,3 +1,13 @@ +0.4.1 +* Add support for the GetAttributeList operation +* Add integration with Travis CI, Codecov/Coveralls, and Bandit +* Add client/server failover support using multiple IP addresses +* Add additional attribute unit tests +* Update implementations of KMIP primitives +* Reorganize server code to prepare for refactoring +* Remove use of exec when handling library version numbers +* Remove broken server script + 0.4.0 - August 14, 2015 * Add the official Pie API for a simpler KMIP interface * Add the ProxyKmipClient implementation of the Pie API diff --git a/kmip/version.py b/kmip/version.py index 525e24a..70f42de 100644 --- a/kmip/version.py +++ b/kmip/version.py @@ -13,4 +13,4 @@ # License for the specific language governing permissions and limitations # under the License. -__version__ = '0.4.0' +__version__ = '0.4.1'