From a0c823aa7ab87c2a21514d06a57724261ba600c1 Mon Sep 17 00:00:00 2001 From: Julien Maupetit Date: Wed, 14 Jun 2017 11:01:31 +0200 Subject: [PATCH] Bump release to 1.1.0 --- CHANGELOG.md | 7 +++++++ td_biblio/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2848d3..22ccd7d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # TailorDev Biblio +## 1.1.0 (June 14, 2017) + +* Add PMIDLoader & DOILoader +* Add references importation view for admins (from PMIDs or DOIs) +* Better integrate the sandbox +* Make the sandbox deployable to Heroku + ## 1.0.0 (March 23, 2017) * Add support for python 3.4+ diff --git a/td_biblio/__init__.py b/td_biblio/__init__.py index 1a58e06..2f71557 100644 --- a/td_biblio/__init__.py +++ b/td_biblio/__init__.py @@ -3,6 +3,6 @@ Bibliography management with Django. """ -__version__ = '1.0.1' +__version__ = '1.1.0' default_app_config = 'td_biblio.apps.TDBiblioConfig'