Skip to content

Commit

Permalink
Invenio-Records v0.3.2
Browse files Browse the repository at this point in the history
Signed-off-by: Jiri Kuncar <jiri.kuncar@cern.ch>
  • Loading branch information
jirikuncar committed Sep 6, 2015
1 parent 66c3a5d commit cded97e
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 15 deletions.
19 changes: 19 additions & 0 deletions CHANGES.rst
Expand Up @@ -24,6 +24,25 @@
Changes
=======

Version 0.3.2 (released 2015-09-06)
-----------------------------------

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()`.

Version 0.3.1 (released 2015-08-25)
-----------------------------------

Expand Down
26 changes: 17 additions & 9 deletions RELEASE-NOTES.rst
@@ -1,33 +1,41 @@
========================
Invenio-Records v0.3.1
Invenio-Records v0.3.2
========================

Invenio-Records v0.3.1 was released on August 25, 2015.
Invenio-Records v0.3.2 was released on September 6, 2015.

About
-----

Invenio-Records is a metadata storage module.

*This is an experimental development preview release.*
*This is an experimental developer preview release.*

Incompatible changes
--------------------

- Removes dependency on legacy bibdocfile module.
(addresses inveniosoftware/invenio#3233)

Bug fixes
---------

- Adds missing `invenio_upgrader` dependency following its separation
into standalone package.

- Fixes invenio_upgrader imports.
- 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()`.

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

$ pip install invenio-records==0.3.1
$ pip install invenio-records==0.3.2

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

http://invenio-records.readthedocs.org/en/v0.3.1
http://invenio-records.readthedocs.org/en/v0.3.2

Happy hacking and thanks for flying Invenio-Records.

Expand Down
2 changes: 1 addition & 1 deletion invenio_records/version.py
Expand Up @@ -28,4 +28,4 @@
and parsed by ``setup.py``.
"""

__version__ = "0.3.2.dev20150825"
__version__ = "0.3.2"
9 changes: 4 additions & 5 deletions setup.py
Expand Up @@ -39,12 +39,11 @@
'jsonpatch>=1.11',
'jsonschema>=2.5.1',
'dojson>=0.1.1',
# FIXME 'Invenio>2.1',
'invenio-access>=0.1.0',
'invenio-collections>=0.1.0',
'invenio-formatter>=0.2.0',
'invenio-collections>=0.1.2',
'invenio-formatter>=0.2.1',
'invenio-pidstore>=0.1.0', # TODO consider making it optional
'invenio-search>=0.1.0',
'invenio-search>=0.1.3',
'invenio-upgrader>=0.1.0',
]

Expand All @@ -56,7 +55,7 @@
'pytest-cov>=1.8.0',
'pytest-pep8>=1.0.6',
'coverage>=3.7.1',
'invenio-accounts>=0.1.0',
'invenio-accounts>=0.1.2',
]

extras_require = {
Expand Down

0 comments on commit cded97e

Please sign in to comment.