diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b57ce8c..be29efe 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,9 +1,10 @@ [bumpversion] -current_version = 1.0.8 +current_version = 1.1.0 tag_name = {new_version} commit = True tag = True [bumpversion:file:setup.py] + [bumpversion:file:dataset/__init__.py] diff --git a/dataset/__init__.py b/dataset/__init__.py index 0215ef7..eb2da9d 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.0.8' +__version__ = '1.1.0' def connect(url=None, schema=None, reflect_metadata=True, engine_kwargs=None, diff --git a/setup.py b/setup.py index 7d66111..3f6bd84 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages setup( name='dataset', - version='1.0.8', + version='1.1.0', description="Toolkit for Python-based database access.", classifiers=[ "Development Status :: 3 - Alpha",