From b15c9c2a289f39f7099e24d0a6de9bb9fbc960d3 Mon Sep 17 00:00:00 2001 From: Lauren Ko Date: Fri, 17 Mar 2017 10:55:32 -0500 Subject: [PATCH 1/2] Adds changes done for 1.1.0 release. --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f6e572..05a6b5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Change Log ========== +1.1.0 +----- + +* Removed assumptions that nominations will be for URLs with http scheme.[#67](https://github.com/unt-libraries/django-nomination/issues/67) +* Adjusted partial search to be scheme agnostic. +* Added scheme agnostic SURT browsing.[#80](https://github.com/unt-libraries/django-nomination/issues/80) +* Modified search by URL to allow alternate schemes when exact match is not available. +* Moved compiling of regular expressions outside of loops.[#38](https://github.com/unt-libraries/django-nomination/issues/38) +* Removed three unreachable branches in create_json_browse(). [#26](https://github.com/unt-libraries/django-nomination/issues/26) +* Removed 'except' branch in url_lookup view that never catches anything. [#31](https://github.com/unt-libraries/django-nomination/issues/31) + 1.0.3 ----- From 3fdfaa233b65b2fba3634631ba13dc39395716fe Mon Sep 17 00:00:00 2001 From: Lauren Ko Date: Fri, 17 Mar 2017 10:58:27 -0500 Subject: [PATCH 2/2] Updated for 1.1.0 release. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 864a500..3f8fbdd 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ setup( name='django-nomination', - version='1.0.3', + version='1.1.0', packages=find_packages(exclude=['tests*']), description='', long_description='See the home page for more information.',