From 0757b5010b600a66ed07fbb06a0e86c7bb0e09bc Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Mon, 30 Jan 2023 09:55:46 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.5.2=20=E2=86=92=201.6.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- dataset/__init__.py | 2 +- docs/conf.py | 4 ++-- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7ab8fc2..5c6b116 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.2 +current_version = 1.6.0 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 502746d..0750eaa 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.5.2" +__version__ = "1.6.0" def connect( diff --git a/docs/conf.py b/docs/conf.py index c6455a5..5ea37fa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,9 +45,9 @@ copyright = u"2013-2021, Friedrich Lindenberg, Gregor Aisch, Stefan Wehrmeyer" # built documents. # # The short X.Y version. -version = "1.5.2" +version = "1.6.0" # The full version, including alpha/beta/rc tags. -release = "1.5.2" +release = "1.6.0" # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: diff --git a/setup.py b/setup.py index 286f893..0691373 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.5.2", + version="1.6.0", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",