Skip to content

Commit

Permalink
release: v0.6.7
Browse files Browse the repository at this point in the history
Co-Authored-by: Lauren-D <[email protected]>
  • Loading branch information
lauren-d committed Jul 19, 2021
1 parent b20b17c commit ea578ce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,13 @@

Changes
=======
Version 0.6.7 (released 2021-07-19)

**Bug fix:**

* Fixes missing conversion of i18n language.
* Fixes date format.

Version 0.6.6 (released 2021-07-14)

**Minor changes:**
Expand Down
5 changes: 4 additions & 1 deletion invenio_sip2/records/record.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,10 @@ def up(self):
"""Set server status to `running` and clear all clients data."""
self['status'] = 'running'
self['started_at'] = datetime.utcnow().isoformat()
del(self['stopped_at'])
try:
del self['stopped_at']
except KeyError:
pass
self.update(self)

def clear_all_clients(self):
Expand Down
2 changes: 1 addition & 1 deletion invenio_sip2/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@

from __future__ import absolute_import, print_function

__version__ = '0.6.6'
__version__ = '0.6.7'

0 comments on commit ea578ce

Please sign in to comment.