Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 14 additions & 8 deletions RELEASE-NOTES.rst
Original file line number Diff line number Diff line change
@@ -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
--------
Expand Down
2 changes: 1 addition & 1 deletion idutils/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.2.3.dev20160916"
__version__ = "0.2.3"