From 600479fd7cce80022795d76e1c01caf9bdf8022a Mon Sep 17 00:00:00 2001 From: Peter Date: Thu, 7 Apr 2016 10:44:39 -0400 Subject: [PATCH] PyKMIP - Release 0.5.0 This update includes a new implementation of the PyKMIP software server, in addition to other minor features and bug fixes: * Add KmipServer server implementation * Add KmipSession to manage threaded client/server connections * Add KmipEngine for processing core server application logic * Add KmipEngine support for CRUD operations for managed objects * Add SQLAlchemy/SQLite support for KmipEngine data storage * Add CryptographyEngine component for all cryptographic operations * Add pending deprecation warning for Python 2.6 support * Add pending deprecation warning for the KMIPServer implementation * Add support for building Sphinx documentation * Add support for SQLAlchemy tables to all Pie objects * Add Python magic methods to Attribute and Name objects * Add Attribute class unit tests * Add bin script to run the KmipServer * Add setup entry points to run the KmipServer * Update DiscoverVersions demo with optional versions argument * Update all demo scripts to setup their own logging infrastructure * Update README with information on the KmipServer implementation * Remove expired certificate files from the integration test suite * Remove default package log configuration and configuration file * Fix bug with Locate payload parsing optional values * Fix bug with DateTime string tests and move to UTC representation --- CHANGES.txt | 25 ++++++++++++++++++++++++- kmip/version.py | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 06ed01e..55fbba8 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,4 +1,27 @@ -0.4.1 +0.5.0 - April 14, 2016 +* Add KmipServer server implementation +* Add KmipSession to manage threaded client/server connections +* Add KmipEngine for processing core server application logic +* Add KmipEngine support for CRUD operations for managed objects +* Add SQLAlchemy/SQLite support for KmipEngine data storage +* Add CryptographyEngine component for cryptographic operations +* Add pending deprecation warning for Python 2.6 support +* Add pending deprecation warning for the KMIPServer implementation +* Add support for building Sphinx documentation +* Add support for SQLAlchemy tables to all Pie objects +* Add Python magic methods to Attribute and Name objects +* Add Attribute class unit tests +* Add bin script to run the KmipServer +* Add setup entry points to run the KmipServer +* Update DiscoverVersions demo with optional versions argument +* Update all demo scripts to setup their own logging infrastructure +* Update README with information on the KmipServer implementation +* Remove expired certificate files from the integration test suite +* Remove default package log configuration and configuration file +* Fix bug with Locate payload parsing optional values +* Fix bug with DateTime string tests and move to UTC representation + +0.4.1 - December 2, 2015 * Add support for the GetAttributeList operation * Add integration with Travis CI, Codecov/Coveralls, and Bandit * Add client/server failover support using multiple IP addresses diff --git a/kmip/version.py b/kmip/version.py index 70f42de..61837f9 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.1' +__version__ = '0.5.0'