diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 560b4b5..3caa1db 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.2 +current_version = 1.4.3 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index dae23d6..4efa7fa 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.4.2" +__version__ = "1.4.3" def connect( diff --git a/docs/conf.py b/docs/conf.py index 72f5af1..661dfc2 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.2" +version = "1.4.3" # The full version, including alpha/beta/rc tags. -release = "1.4.2" +release = "1.4.3" # 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 5d9c0a4..db6b055 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.4.2", + version="1.4.3", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",