From dec3310e9beff8d17eb7641144c8d91658d40840 Mon Sep 17 00:00:00 2001 From: Lars Holm Nielsen Date: Wed, 6 Apr 2016 13:40:10 +0200 Subject: [PATCH] release: v0.2.0 Signed-off-by: Lars Holm Nielsen --- CHANGES.rst | 13 ++++++++++++- RELEASE-NOTES.rst | 15 ++++++++------- jsonresolver/version.py | 2 +- 3 files changed, 21 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index c7f7310..daca457 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,6 @@ .. This file is part of jsonresolver - Copyright (C) 2015 CERN. + Copyright (C) 2015, 2016 CERN. jsonresolver is free software; you can redistribute it and/or modify it under the terms of the Revised BSD License; see LICENSE file for @@ -9,6 +9,17 @@ Changes ======= +Version 0.2.0 (released 2016-04-06) +----------------------------------- + +- Fixes issues with the hostname not being matched resulting in the + same route on two hosts not to work. + +Incompatible changes +~~~~~~~~~~~~~~~~~~~~ + +- Changes resolving to be based on hostname without 'http://' prefix. + Version 0.1.1 (released 2015-12-11) ----------------------------------- diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 56dacbc..2b9b1ce 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,8 +1,8 @@ ===================== - JSONResolver v0.1.1 + JSONResolver v0.2.0 ===================== -JSONResolver v0.1.1 was released on December 11, 2015. +JSONResolver v0.2.0 was released on April 6, 2016. About ----- @@ -14,17 +14,18 @@ JSON data resolver with support for plugins. What's new ---------- -- Initial public release. +- Fixes issues with the hostname not being matched resulting in the + same route on two hosts not to work. -Improved features ------------------ +Incompatible changes +-------------------- -- Delays the url_map building until first resolve request. +- Changes resolving to be based on hostname without 'http://' prefix. Installation ------------ - $ pip install jsonresolver==0.1.1 + $ pip install jsonresolver==0.2.0 Documentation ------------- diff --git a/jsonresolver/version.py b/jsonresolver/version.py index 9781e67..583f2ae 100644 --- a/jsonresolver/version.py +++ b/jsonresolver/version.py @@ -16,4 +16,4 @@ # Do not change the format of this next line. Doing so risks breaking # setup.py and docs/conf.py -__version__ = "0.1.2.dev20160404" +__version__ = "0.2.0"