Bump version: 1.2.3 → 1.3.0

This commit is contained in:
Friedrich Lindenberg 2020-03-15 14:07:19 +01:00
parent 2677bc04c6
commit 0a32b89c01
3 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.3
current_version = 1.3.0
tag_name = {new_version}
commit = True
tag = True

View File

@ -11,7 +11,7 @@ warnings.filterwarnings(
'ignore', 'Skipping unsupported ALTER for creation of implicit constraint')
__all__ = ['Database', 'Table', 'freeze', 'connect']
__version__ = '1.2.3'
__version__ = '1.3.0'
def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None,

View File

@ -5,7 +5,7 @@ with open('README.md') as f:
setup(
name='dataset',
version='1.2.3',
version='1.3.0',
description="Toolkit for Python-based database access.",
long_description=long_description,
long_description_content_type='text/markdown',
@ -29,7 +29,7 @@ setup(
include_package_data=False,
zip_safe=False,
install_requires=[
'sqlalchemy >= 1.2.3',
'sqlalchemy >= 1.3.0',
'alembic >= 0.6.2'
],
extras_require={