Skip to content

Commit

Permalink
release: v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dgilland committed Jan 26, 2024
1 parent 2206bcc commit 113e071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ Changelog
=========


v3.0.0 (2023-01-26)
-------------------

- Fix bug in Session/AsynSession methods ``first()``, ``one()``, ``one_or_none()``, ``save()``, and ``save_all()`` that would result in ``sqlalchemy.exc.InvalidRequestError`` due to ``unique()`` not being applied to the results.
- Add support for Python 3.11 and 3.12.
- Drop support for SQLAlchemy < 2.0. (**breaking change**)
Expand Down
2 changes: 1 addition & 1 deletion src/sqlservice/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""The sqlservice package."""

__version__ = "2.0.1"
__version__ = "3.0.0"

from . import event
from .async_database import AsyncDatabase
Expand Down

0 comments on commit 113e071

Please sign in to comment.