diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e3817f78..0d7f1d55 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.2.dev0 +current_version = 1.9.2 commit = True tag = False parse = ^ diff --git a/docs/conf.py b/docs/conf.py index 92f926fb..29929ae8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ sys.path.insert(0, os.path.abspath("../src")) # -- Project information --------------------------------------------------------------- author = "Sam Schott" -version = "1.9.2.dev0" +version = "1.9.2" release = version project = "Maestral" title = "Maestral API Documentation" diff --git a/pyproject.toml b/pyproject.toml index 9536d263..b596673c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "maestral" -version = "1.9.2.dev0" +version = "1.9.2" authors = [{name = "Sam Schott", email = "sam.schott@outlook.com"}] license = {text = "MIT"} description = "Open-source Dropbox client for macOS and Linux." diff --git a/src/maestral/__init__.py b/src/maestral/__init__.py index 7f583a64..68658a4b 100644 --- a/src/maestral/__init__.py +++ b/src/maestral/__init__.py @@ -1,7 +1,7 @@ import warnings -__version__ = "1.9.2.dev0" +__version__ = "1.9.2" __author__ = "Sam Schott" __url__ = "https://maestral.app"