diff --git a/ormdantic/__init__.py b/ormdantic/__init__.py index 3574c30..cd9ec54 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.2.0" +__version__ = "1.3.0" from ormdantic.orm import Ormdantic diff --git a/tests/test_version.py b/tests/test_version.py index bc7f4e9..48f9e9a 100644 --- a/tests/test_version.py +++ b/tests/test_version.py @@ -2,4 +2,4 @@ def test_version() -> None: - assert ormdantic.__version__ == "1.2.0" + assert ormdantic.__version__ == "1.3.0"