From 5c2dc8d3af1e0af0290dcd7ae2cae92589f305a1 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Wed, 12 Jul 2023 10:51:27 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.6.1=20=E2=86=92=201.6.2?= 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 47128cb..73a3bad 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index c2ceae2..82576a0 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.6.1" +__version__ = "1.6.2" def connect( diff --git a/docs/conf.py b/docs/conf.py index e3778ea..dec4f89 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -45,9 +45,9 @@ # built documents. # # The short X.Y version. -version = "1.6.1" +version = "1.6.2" # The full version, including alpha/beta/rc tags. -release = "1.6.1" +release = "1.6.2" # 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 4404a4b..749af05 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="dataset", - version="1.6.1", + version="1.6.2", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",