From 3a931b7b5bede7b73a5e5a9d0d2e278466216665 Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Sat, 14 Nov 2020 23:02:17 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.0=20=E2=86=92=201.4.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .bumpversion.cfg | 2 +- dataset/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4677e87..d9ab0a4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0 +current_version = 1.4.1 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 09c7a49..8df446b 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.4.0" +__version__ = "1.4.1" def connect( diff --git a/setup.py b/setup.py index 7dcaef4..040d626 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.4.0", + version="1.4.1", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",