From 46f4d4ba9c2589fb2ca007cb45151013bb8fb9ff Mon Sep 17 00:00:00 2001 From: Jiri Kuncar Date: Mon, 14 Sep 2015 10:21:46 +0200 Subject: [PATCH] Invenio-Records v0.3.3 Signed-off-by: Jiri Kuncar --- CHANGES.rst | 9 +++++++++ RELEASE-NOTES.rst | 22 ++++++---------------- invenio_records/version.py | 2 +- setup.py | 2 +- 4 files changed, 17 insertions(+), 18 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 3e20cfac..13dbf256 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -24,6 +24,15 @@ Changes ======= +Version 0.3.3 (released 2015-09-14) +----------------------------------- + +Bug fixes +~~~~~~~~~ + +- Adds missing `invenio_base` dependency. +- Removes dependency on JSONAlchemy from Invenio package. + Version 0.3.2 (released 2015-09-06) ----------------------------------- diff --git a/RELEASE-NOTES.rst b/RELEASE-NOTES.rst index b3ea25b7..de7d6e39 100644 --- a/RELEASE-NOTES.rst +++ b/RELEASE-NOTES.rst @@ -1,8 +1,8 @@ ======================== - Invenio-Records v0.3.2 + Invenio-Records v0.3.3 ======================== -Invenio-Records v0.3.2 was released on September 6, 2015. +Invenio-Records v0.3.3 was released on September 14, 2015. About ----- @@ -11,31 +11,21 @@ Invenio-Records is a metadata storage module. *This is an experimental developer preview release.* -Incompatible changes --------------------- - -- Removes dependency on legacy bibdocfile module. - (addresses inveniosoftware/invenio#3233) - Bug fixes --------- -- Disables autoflush when pulling records out of the database, to - prevent superfluous call to `flush()`. (#24) -- Adds missing `invenio_access` dependency and amends past upgrade - recipes following its separation into standalone package. -- Loads all recordext functions registered before updating a record - via `Record.commit()`. +- Adds missing `invenio_base` dependency. +- Removes dependency on JSONAlchemy from Invenio package. Installation ------------ - $ pip install invenio-records==0.3.2 + $ pip install invenio-records==0.3.3 Documentation ------------- - http://invenio-records.readthedocs.org/en/v0.3.2 + http://invenio-records.readthedocs.org/en/v0.3.3 Happy hacking and thanks for flying Invenio-Records. diff --git a/invenio_records/version.py b/invenio_records/version.py index fe89e136..df47fd97 100644 --- a/invenio_records/version.py +++ b/invenio_records/version.py @@ -28,4 +28,4 @@ and parsed by ``setup.py``. """ -__version__ = "0.3.3.dev20150911" +__version__ = "0.3.3" diff --git a/setup.py b/setup.py index 86e78bca..9b286207 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ 'jsonschema>=2.5.1', 'dojson>=0.1.1', 'invenio-access>=0.1.0', - 'invenio-base>=0.1.0', + 'invenio-base>=0.2.0', 'invenio-collections>=0.1.2', 'invenio-formatter>=0.2.1', 'invenio-pidstore>=0.1.1', # TODO consider making it optional