From 751e38d8457ffcc3e4fff62f1795db71f8093802 Mon Sep 17 00:00:00 2001 From: Krzysztof Nowak Date: Wed, 21 Sep 2016 16:12:35 +0200 Subject: [PATCH] release: v0.2.3 Signed-off-by: Krzysztof Nowak --- CHANGES.rst | 7 +++++++ RELEASE-NOTES.rst | 22 ++++++++++++++-------- idutils/version.py | 2 +- 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 27cb7a3..fe9a0c1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,13 @@ Changes ======= +Version 0.2.3 (2016-09-21) + +- Adds an optional parameter in `idutils.to_url` to use HTTPS scheme + for PID providers that support it. +- Detects and parses Handles and DOIs without the "http(s)://", and + ignores whitespace after scheme tags (eg. "doi: 10.123/456"). + Version 0.2.2 (2016-09-16) - Fixes issue where a valid ISBN with dashes and spaces could not be diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index 253f831..6a312df 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,29 +1,35 @@ ============================ - IDUtils v0.2.2 is released + IDUtils v0.2.3 is released ============================ -IDUtils v0.2.2 was released on 2016-09-16 +IDUtils v0.2.3 was released on 2016-09-21 About ----- Small library for persistent identifiers used in scholarly communication. -What's new ----------- +New features +------------ + +- Adds an optional parameter in `idutils.to_url` to use HTTPS scheme + for PID providers that support it. + +Improved features +----------------- -- Fixes issue where a valid ISBN with dashes and spaces could not be - normalized. +- Detects and parses Handles and DOIs without the "http(s)://", and + ignores whitespace after scheme tags (eg. "doi: 10.123/456"). Installation ------------ - $ pip install idutils==0.2.2 + $ pip install idutils==0.2.3 Documentation ------------- - http://idutils.readthedocs.org/en/v0.2.2 + http://idutils.readthedocs.org/en/v0.2.3 Homepage -------- diff --git a/idutils/version.py b/idutils/version.py index af1d67b..b264360 100644 --- a/idutils/version.py +++ b/idutils/version.py @@ -19,4 +19,4 @@ from __future__ import absolute_import, print_function -__version__ = "0.2.3.dev20160916" +__version__ = "0.2.3"