diff --git a/ormdantic/__init__.py b/ormdantic/__init__.py index 90c71d1..1acc4c5 100644 --- a/ormdantic/__init__.py +++ b/ormdantic/__init__.py @@ -1,6 +1,6 @@ """asynchronous ORM that uses pydantic models to represent database tables ✨""" -__version__ = "1.5.0" +__version__ = "1.5.1" from ormdantic.orm import Ormdantic diff --git a/tests/test_version.py b/tests/test_version.py index 2a06fec..ea3f5fc 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert ormdantic.__version__ == "1.5.0" + assert ormdantic.__version__ == "1.5.1"