diff --git a/.bumpversion.cfg b/.bumpversion.cfg index d9ab0a4..cd7c049 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.1 +current_version = 1.4.2 tag_name = {new_version} commit = True tag = True diff --git a/dataset/__init__.py b/dataset/__init__.py index 8df446b..dae23d6 100644 --- a/dataset/__init__.py +++ b/dataset/__init__.py @@ -11,7 +11,7 @@ warnings.filterwarnings( ) __all__ = ["Database", "Table", "connect"] -__version__ = "1.4.1" +__version__ = "1.4.2" def connect( diff --git a/setup.py b/setup.py index 040d626..e098c22 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md") as f: setup( name="dataset", - version="1.4.1", + version="1.4.2", description="Toolkit for Python-based database access.", long_description=long_description, long_description_content_type="text/markdown",