diff --git a/esgpull/migrations/versions/0.7.2_update_tables.py b/esgpull/migrations/versions/0.7.2_update_tables.py new file mode 100644 index 0000000..e1d40f5 --- /dev/null +++ b/esgpull/migrations/versions/0.7.2_update_tables.py @@ -0,0 +1,28 @@ +"""update tables + +Revision ID: 0.7.2 +Revises: 0.7.1 +Create Date: 2024-09-17 15:04:11.203421 + +""" +from alembic import op +import sqlalchemy as sa + + +# revision identifiers, used by Alembic. +revision = '0.7.2' +down_revision = '0.7.1' +branch_labels = None +depends_on = None + + +def upgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### + + +def downgrade() -> None: + # ### commands auto generated by Alembic - please adjust! ### + pass + # ### end Alembic commands ### diff --git a/pyproject.toml b/pyproject.toml index ef7a148..587a100 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "esgpull" -version = "0.7.1" +version = "0.7.2" classifiers = [ "License :: OSI Approved :: BSD License", "Programming Language :: Python :: 3",