From 0a29a3fa2abb98c87584e646d246b8b04f1e0113 Mon Sep 17 00:00:00 2001 From: kevgliss Date: Tue, 15 Nov 2016 16:44:40 -0800 Subject: [PATCH] Adding release notes. (#459) --- CHANGELOG.rst | 32 +++++++++++++++++++++++++++++--- lemur/__about__.py | 2 +- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4dd7b29e..82b7a938 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,13 +1,39 @@ Changelog ========= -0.3.1 - `master` -~~~~~~~~~~~~~~~~ +0.5 - `master` +~~~~~~~~~~~~~~ .. note:: This version is not yet released and is under active development + +0.4 - `` +~~~~~~~~ + +There have been quite a few issues closed in this release. Some notables: + +* Closed `#284 `_ - Created new models for `Endpoints` created associated +AWS ELB endpoint tracking code. This was the major stated goal of this milestone and should serve as the basis for +future enhancements of Lemur's certificate 'deployment' capabilities. + +* Closed `#334 `_ - Lemur not has the ability +to restrict certificate expiration dates to weekdays. + +Several fixes/tweaks to Lemurs python3 support (thanks chadhendrie!) + +This will most likely be the last release to support python2.7 moving Lemur to target python3 exclusively. Please comment +on issue #340 if this negatively affects your usage of Lemur. + +Upgrading +--------- + +See the full list of issues closed in `0.4 `_. + +.. note:: This release will need a slight migration change. Please follow the `documentation `_ to upgrade Lemur. + + 0.3.0 - `2016-06-06` -~~~~~~~~~~~~~~~~ +~~~~~~~~~~~~~~~~~~~~ This is quite a large upgrade, it is highly advised you backup your database before attempting to upgrade as this release requires the migration of database structure as well as data. diff --git a/lemur/__about__.py b/lemur/__about__.py index 5874d8e0..03e741df 100644 --- a/lemur/__about__.py +++ b/lemur/__about__.py @@ -9,7 +9,7 @@ __title__ = "lemur" __summary__ = ("Certificate management and orchestration service") __uri__ = "https://github.com/Netflix/lemur" -__version__ = "0.3.0" +__version__ = "0.4.0" __author__ = "The Lemur developers" __email__ = "security@netflix.com"