diff --git a/pyproject.toml b/pyproject.toml index 8ea1ced..6448764 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "sqlalchemy-file" -version = "0.1.5" +version = "0.2.0" description = "SQLAlchemy-file is a SQLAlchemy extension for attaching files to SQLAlchemy model and uploading them to various storage." authors = ["Jocelin Hounon "] license = "MIT" diff --git a/sqlalchemy_file/__init__.py b/sqlalchemy_file/__init__.py index e8b3de7..7b7ac49 100644 --- a/sqlalchemy_file/__init__.py +++ b/sqlalchemy_file/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.5" +__version__ = "0.2.0" from .file import File as File from .types import FileField as FileField