From af8098718eac87433da58648da3133d1d36e3556 Mon Sep 17 00:00:00 2001 From: Jiri Kuncar Date: Fri, 15 Apr 2016 11:06:19 +0200 Subject: [PATCH] release: v0.2.1 Signed-off-by: Jiri Kuncar --- CHANGES.rst | 9 +++++++++ RELEASE-NOTES.rst | 17 +++++------------ jsonresolver/version.py | 2 +- 3 files changed, 15 insertions(+), 13 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index f6afa02..70a9b5c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -9,6 +9,15 @@ Changes ======= +Version 0.2.1 (released 2016-04-15) +----------------------------------- + +Bug fixes +~~~~~~~~~ + +- Fixes issue with exceptions raised during e.g. resolver plugin + loading being caught and not propagated. + Version 0.2.0 (released 2016-04-06) ----------------------------------- diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 9c22101..e578ef5 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,31 +1,24 @@ ===================== - JSONResolver v0.2.0 + JSONResolver v0.2.1 ===================== -JSONResolver v0.2.0 was released on April 6, 2016. +JSONResolver v0.2.1 was released on April 15, 2016. About ----- JSON data resolver with support for plugins. -*This is an experimental developer preview release.* - -Incompatible changes --------------------- - -- Changes resolving to be based on hostname without http:// prefix. - Bug fixes --------- -- Fixes issues with the hostname not being matched resulting in the - same route on two hosts not to work. +- Fixes issue with exceptions raised during e.g. resolver plugin + loading being caught and not propagated. Installation ------------ - $ pip install jsonresolver==0.2.0 + $ pip install jsonresolver==0.2.1 Documentation ------------- diff --git a/jsonresolver/version.py b/jsonresolver/version.py index 041c8ab..c960718 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.2.1.dev20160407" +__version__ = "0.2.1"