From fd918f06b6654de84c7a3b5377a9dbd47efa842b Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sun, 17 Jan 2021 12:45:56 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.3=20=E2=86=92=201.4.4?= 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 3caa1db..0be80fc 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.3 +current_version = 1.4.4 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 4efa7fa..3f6a09a 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.4.3" +__version__ = "1.4.4" def connect( diff --git a/docs/conf.py b/docs/conf.py index 661dfc2..7483784 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.4.3" +version = "1.4.4" # The full version, including alpha/beta/rc tags. -release = "1.4.3" +release = "1.4.4" # 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 db6b055..0a63cb9 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.4.3", + version="1.4.4", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",