Skip to content

Commit

Permalink
release: v1.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
zzacharo committed Aug 18, 2023
1 parent 5fc0fc9 commit cb29d2e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
Changes
=======

Version 1.1.4 (released 2023-08-18)

- shared: fix sqlalchemy op.execute statements due to latest sqlalchamy-continuum

Version 1.1.3 (released 2023-08-17)

- alembic: fix sqlalchemy op.execute statements due to latest sqlalchamy-continuum
Expand Down
2 changes: 1 addition & 1 deletion invenio_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class User(db.Model):
from .ext import InvenioDB
from .shared import db

__version__ = "1.1.3"
__version__ = "1.1.4"

__all__ = (
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion invenio_db/shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

from flask_sqlalchemy import SQLAlchemy as FlaskSQLAlchemy
from sqlalchemy import MetaData, event, util
from sqlalchemy.sql import text
from sqlalchemy.engine import Engine
from sqlalchemy.sql import text
from werkzeug.local import LocalProxy

NAMING_CONVENTION = util.immutabledict(
Expand Down

0 comments on commit cb29d2e

Please sign in to comment.