Skip to content

Commit

Permalink
release: v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lnielsen committed May 27, 2020
1 parent cc7600e commit a885909
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Expand Up @@ -41,6 +41,8 @@ env:

python:
- "3.6"
- "3.7"
- "3.8"

matrix:
fast_finish: true
Expand Down
12 changes: 10 additions & 2 deletions CHANGES.rst
Expand Up @@ -8,11 +8,19 @@
Changes
=======

Version 1.3.2 (released 2020-05-27)

- Fixes a bug causing incorrect revisions to be fetched. If ``record.commit()``
was called multiple times prior to a ``db.session.commit()``, there would be
gaps in the version ids persisted in the database. This meant that if you
used ``record.revisions[revision_id]`` to access a revision, it was not
guaranteed to return that specific revision id. See #221

Version 1.3.1 (released 2020-05-07)

- Deprecated Python versions lower than 3.6.0. Now supporting 3.6.0 and 3.7.0.
- Removed dependency on Invenio-PIDStore and releated documentation. Functionality
was removed in v1.3.0.
- Removed dependency on Invenio-PIDStore and releated documentation.
Functionality was removed in v1.3.0.

Version 1.3.0 (released 2019-08-01)

Expand Down
2 changes: 1 addition & 1 deletion invenio_records/version.py
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = '1.3.1'
__version__ = '1.3.2'

0 comments on commit a885909

Please sign in to comment.