Skip to content

Commit d48ab70

Browse files
committed
bump 0.7.1
1 parent 2031a06 commit d48ab70

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""update tables
2+
3+
Revision ID: 0.7.1
4+
Revises: 0.7.0
5+
Create Date: 2024-09-12 17:00:21.157499
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = '0.7.1'
14+
down_revision = '0.7.0'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade() -> None:
20+
# ### commands auto generated by Alembic - please adjust! ###
21+
pass
22+
# ### end Alembic commands ###
23+
24+
25+
def downgrade() -> None:
26+
# ### commands auto generated by Alembic - please adjust! ###
27+
pass
28+
# ### end Alembic commands ###

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "esgpull"
7-
version = "0.7.0"
7+
version = "0.7.1"
88
classifiers = [
99
"License :: OSI Approved :: BSD License",
1010
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)