From c01e717436233c0012e5a10669e138420194898b Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sun, 23 Feb 2020 19:17:20 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.2.0=20=E2=86=92=201.2.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- dataset/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f45cbe0..32f8899 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.2.0 +current_version = 1.2.1 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 8013520..c560507 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( 'ignore', 'Skipping unsupported ALTER for creation of implicit constraint') __all__ = ['Database', 'Table', 'freeze', 'connect'] -__version__ = '1.2.0' +__version__ = '1.2.1' def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None, diff --git a/setup.py b/setup.py index d016cde..1223b83 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='dataset', - version='1.2.0', + version='1.2.1', description="Toolkit for Python-based database access.", classifiers=[ "Development Status :: 3 - Alpha", @@ -25,7 +25,7 @@ setup( include_package_data=False, zip_safe=False, install_requires=[ - 'sqlalchemy >= 1.2.0', + 'sqlalchemy >= 1.2.1', 'alembic >= 0.6.2' ], tests_require=[