From 2e0a1e566174c854dbc11658c91733508885f2f8 Mon Sep 17 00:00:00 2001 From: Sam Schott Date: Thu, 21 Oct 2021 17:46:47 +0100 Subject: [PATCH] =?UTF-8?q?Bump=20version:=201.5.1.dev0=20=E2=86=92=201.5.?= =?UTF-8?q?1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- src/maestral/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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"