diff --git a/docs/conf.py b/docs/conf.py index 4ff2aefc4..999939a99 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ # -- Project information --------------------------------------------------------------- author = "Sam Schott" -version = "1.4.0.dev0" +version = "1.4.0" release = version project = "Maestral" title = "Maestral API Documentation" diff --git a/setup.cfg b/setup.cfg index f4014b992..b8fcf5675 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0.dev0 +current_version = 1.4.0 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index a7c0acb67..ec6a52b8d 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ name="maestral", author="Sam Schott", author_email="ss2151@cam.ac.uk", - version="1.4.0.dev0", + version="1.4.0", url="https://github.com/SamSchott/maestral", description="Open-source Dropbox client for macOS and Linux.", license="MIT", diff --git a/src/maestral/__init__.py b/src/maestral/__init__.py index e895db638..6d9534689 100644 --- a/src/maestral/__init__.py +++ b/src/maestral/__init__.py @@ -2,7 +2,7 @@ import warnings -__version__ = "1.4.0.dev0" +__version__ = "1.4.0" __author__ = "Sam Schott" __url__ = "https://github.com/SamSchott/maestral"