diff --git a/docs/conf.py b/docs/conf.py index 8ecb04b54..a184eec10 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ # -- Project information --------------------------------------------------------------- author = "Sam Schott" -version = "1.5.1.dev0" +version = "1.5.1" release = version project = "Maestral" title = "Maestral API Documentation" diff --git a/setup.cfg b/setup.cfg index e08c359bd..96de387de 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.1.dev0 +current_version = 1.5.1 commit = True tag = False parse = ^ diff --git a/setup.py b/setup.py index d38fa7ba9..aaf4c5ed3 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ name="maestral", author="Sam Schott", author_email="sam.schott@outlook.com", - version="1.5.1.dev0", + version="1.5.1", url="https://maestral.app", description="Open-source Dropbox client for macOS and Linux.", license="MIT", diff --git a/src/maestral/__init__.py b/src/maestral/__init__.py index d2f2f32ef..46183467a 100644 --- a/src/maestral/__init__.py +++ b/src/maestral/__init__.py @@ -5,7 +5,7 @@ from click import shell_completion # type: ignore -__version__ = "1.5.1.dev0" +__version__ = "1.5.1" __author__ = "Sam Schott" __url__ = "https://maestral.app"