From 0e5dee235717ea5ebaedd75406765ce89f62730b Mon Sep 17 00:00:00 2001 From: Friedrich Lindenberg Date: Thu, 22 Apr 2021 19:01:41 +0200 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.4.5=20=E2=86=92=201.5.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 505e51b..8cd39a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.5 +current_version = 1.5.0 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index bf20519..e4266e2 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.4.5" +__version__ = "1.5.0" def connect( diff --git a/docs/conf.py b/docs/conf.py index b12283e..46fffb0 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.5" +version = "1.5.0" # The full version, including alpha/beta/rc tags. -release = "1.4.5" +release = "1.5.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 11d450c..2631d03 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.4.5", + version="1.5.0", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",