From 7f3f27811d00eab1cea848e3320ced696d6da945 Mon Sep 17 00:00:00 2001 From: Lars Holm Nielsen Date: Tue, 21 Jul 2015 18:11:31 +0200 Subject: [PATCH] idutils v0.1.1 Signed-off-by: Lars Holm Nielsen --- CHANGES.rst | 10 ++++++++++ RELEASE-NOTES.rst | 17 ++++++++++++++--- idutils/version.py | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 095a95b..5d99e91 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,16 @@ Changes ======= +Version 0.1.1 (2015-07-22) + +- Fixes GND validation and normalization. +- Replaces invalid package name in `run-tests.sh` and makes `run-tests.sh` file + executable. One can now use `docker-compose run --rm web /code/run-tests.sh` + to run all the CI tests (pep257, sphinx, test suite). +- Initial release of Docker configuration suitable for local developments. + `docker-compose build` rebuilds the image, + `docker-compose run --rm web /code/run-tests.sh` runs the test suite. + Version 0.1.0 (2015-07-02) - First public release. diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index e620504..ab98cde 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,14 +1,25 @@ =================================== - IDUtils v0.1.0 is released + IDUtils v0.1.1 is released =================================== -IDUtils v0.1.0 was released on 2015-07-02 +IDUtils v0.1.0 was released on 2015-07-22 About ----- Small library for persistent identifiers used in scholarly communication. +What's new +---------- + +- Fixes GND validation and normalization. +- Replaces invalid package name in `run-tests.sh` and makes `run-tests.sh` file + executable. One can now use `docker-compose run --rm web /code/run-tests.sh` + to run all the CI tests (pep257, sphinx, test suite). +- Initial release of Docker configuration suitable for local developments. + `docker-compose build` rebuilds the image, + `docker-compose run --rm web /code/run-tests.sh` runs the test suite. + Installation ------------ @@ -17,7 +28,7 @@ Installation Documentation ------------- - http://idutils.readthedocs.org/en/v0.1.0 + http://idutils.readthedocs.org/en/v0.1.1 Homepage -------- diff --git a/idutils/version.py b/idutils/version.py index 1a29b46..f726f3e 100644 --- a/idutils/version.py +++ b/idutils/version.py @@ -19,4 +19,4 @@ from __future__ import absolute_import, print_function, unicode_literals -__version__ = "0.1.1.dev20150702" +__version__ = "0.1.1"