diff --git a/poetry.lock b/poetry.lock index 618aec8..71e9bf3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,6 +1,6 @@ [[package]] name = "aenum" -version = "2.2.6" +version = "3.1.0" description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants" category = "main" optional = false @@ -788,13 +788,13 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=2.4)", "pytest-flake8", "pytes [metadata] lock-version = "1.1" python-versions = "^3.6.5" -content-hash = "0dde5b64631e57b73d4b5ae5145ec9ca500202068a0e7271e3a036d391cf9098" +content-hash = "d9a6dbce5146adbeedffda7514f87aeb4dd70ff3be42acabe61c30c1710708b4" [metadata.files] aenum = [ - {file = "aenum-2.2.6-py2-none-any.whl", hash = "sha256:aaebe735508d9cbc72cd6adfb59660a5e676dfbeb6fb24fb090041e7ddb8d3b3"}, - {file = "aenum-2.2.6-py3-none-any.whl", hash = "sha256:f9d20f7302ce3dc3639b3f75c3b3e146f3b22409a6b4513c1f0bd6dbdfcbd8c1"}, - {file = "aenum-2.2.6.tar.gz", hash = "sha256:260225470b49429f5893a195a8b99c73a8d182be42bf90c37c93e7b20e44eaae"}, + {file = "aenum-3.1.0-py2-none-any.whl", hash = "sha256:1f92fb906e3d745064e85f9a1937006ee341e00a35ecd8b7f899041b8e1d67d7"}, + {file = "aenum-3.1.0-py3-none-any.whl", hash = "sha256:f8401f1a258436719ed013444ab37ff22a72517e0e3097058dd1511cf284447c"}, + {file = "aenum-3.1.0.tar.gz", hash = "sha256:87f0e9ef4f828578ab06af30e4d7944043bf4ecd3f4b7bd1cbe37e2173cde94a"}, ] aiocontextvars = [ {file = "aiocontextvars-0.2.2-py2.py3-none-any.whl", hash = "sha256:885daf8261818767d8f7cbd79f9d4482d118f024b6586ef6e67980236a27bfa3"}, diff --git a/pynocular/__init__.py b/pynocular/__init__.py index e69aaa0..e81cbbf 100644 --- a/pynocular/__init__.py +++ b/pynocular/__init__.py @@ -1,5 +1,5 @@ """Lightweight ORM that lets you query your database using Pydantic models and asyncio""" -__version__ = "0.6.0" +__version__ = "0.7.0" from pynocular.engines import DatabaseType, DBInfo diff --git a/pyproject.toml b/pyproject.toml index f747b81..c65ba7c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pynocular" -version = "0.6.0" +version = "0.7.0" description = "Lightweight ORM that lets you query your database using Pydantic models and asyncio" authors = [ "RJ Santana ", @@ -14,7 +14,7 @@ repository = "https://github.com/NarrativeScience/pynocular" [tool.poetry.dependencies] python = "^3.6.5" -aenum = "^2.1" +aenum = "^3.1.0" aiocontextvars = "^0.2.2" aiopg = "^0.16.0" asyncpg = "^0.15.0"