From 22b64ee4806017e8ba59a94def7f19c8fd3573f2 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Thu, 7 Feb 2019 10:49:52 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.1.1=20=E2=86=92=201.1.2?= 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 266b01c..3ecf4b9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1 +current_version = 1.1.2 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 57e9883..69bd47f 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.1.1' +__version__ = '1.1.2' def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None, diff --git a/setup.py b/setup.py index 235e9af..23c68df 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='dataset', - version='1.1.1', + version='1.1.2', description="Toolkit for Python-based database access.", classifiers=[ "Development Status :: 3 - Alpha", @@ -26,7 +26,7 @@ setup( include_package_data=False, zip_safe=False, install_requires=[ - 'sqlalchemy >= 1.1.1', + 'sqlalchemy >= 1.1.2', 'alembic >= 0.6.2', "six >= 1.11.0" ],