Skip to content
This repository was archived by the owner on May 5, 2022. It is now read-only.

Commit 4ebaab6

Browse files
committed
chores: bump version to 0.2 and add release.sh
1 parent be859cd commit 4ebaab6

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

hack/release.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
set -eux
3+
4+
python setup.py sdist bdist_egg bdist_wheel
5+
6+
twine check ./dist/*
7+
twine upload ./dist/*

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="sqlalchemy-trino",
8-
version="0.1.0",
8+
version="0.2.0",
99
author="Dũng Đặng Minh",
1010
author_email="[email protected]",
1111
description="Trino dialect for SQLAlchemy",

sqlalchemy_trino/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from sqlalchemy.dialects import registry
22

3-
__version__ = '0.1.0'
3+
__version__ = '0.2.0'
44
registry.register("trino", "sqlalchemy_trino.dialect", "TrinoDialect")

0 commit comments

Comments
 (0)