Skip to content

Commit

Permalink
release: v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed Dec 6, 2017
1 parent 84ab6fa commit d47b332
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Expand Up @@ -14,6 +14,11 @@
Changes
=======

Version 1.0.0 (2017-12-07)

- Fixes handling of unicode characters in DOIs.
- Adds support for APS style arXiv identifiers.

Version 0.2.4 (2017-01-30)

- Removes `Python 3.3` from a list of supported Python versions and
Expand Down
13 changes: 6 additions & 7 deletions RELEASE-NOTES.rst
@@ -1,8 +1,8 @@
============================
IDUtils v0.2.4 is released
IDUtils v1.0.0 is released
============================

IDUtils v0.2.4 was released on 2017-01-30
IDUtils v1.0.0 was released on 2017-12-07

About
-----
Expand All @@ -12,19 +12,18 @@ Small library for persistent identifiers used in scholarly communication.
Improved features
-----------------

- Removes `Python 3.3` from a list of supported Python versions and
adds `Python 3.6`
- Moves from `isbnid (v0.3.4)` to `isbnid_fork (v0.4.4)` library.
- Fixes handling of unicode characters in DOIs.
- Adds support for APS style arXiv identifiers.

Installation
------------

$ pip install idutils==0.2.4
$ pip install idutils==1.0.0

Documentation
-------------

http://idutils.readthedocs.io/en/v0.2.4
http://idutils.readthedocs.io/en/v1.0.0

Homepage
--------
Expand Down
2 changes: 1 addition & 1 deletion idutils/__init__.py
Expand Up @@ -18,7 +18,7 @@
import re

from isbn import ISBN
from six.moves.urllib.parse import urlparse, quote_plus
from six.moves.urllib.parse import urlparse


from .version import __version__
Expand Down
2 changes: 1 addition & 1 deletion idutils/version.py
Expand Up @@ -19,4 +19,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.2.5.dev20170131"
__version__ = "1.0.0"

0 comments on commit d47b332

Please sign in to comment.