From cb5cce5972e8e8228069762bbf2c0e8becd23c29 Mon Sep 17 00:00:00 2001 From: Vincent Michel Date: Tue, 13 Feb 2024 18:26:13 +0100 Subject: [PATCH] Bump version 2.17.0-rc.5+dev -> 2.17.0 --- HISTORY.rst | 43 +++++------------------------- docs/conf.py | 2 +- licenses/BUSL-Scille.txt | 4 +-- misc/version_updater.py | 2 +- packaging/snap/snap/snapcraft.yaml | 2 +- parsec/_version.py | 2 +- pyproject.toml | 2 +- 7 files changed, 14 insertions(+), 43 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index d905ccd7dff..c1ead42fb90 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -5,40 +5,8 @@ History .. towncrier release notes start -Parsec v2.17.0-rc.5 (2024-02-07) --------------------------------- - -No significant changes. - - -Parsec v2.17.0-rc.4 (2024-02-06) --------------------------------- - -No significant changes. - - -Parsec v2.17.0-rc.3 (2024-02-06) --------------------------------- - -Bugfixes -~~~~~~~~ - -* Fix the filter list when filtering user profiles. - (`#6369 `__) - -* Add missing translation for offline availability dialog. - (`#6224 `__) - - - -Parsec v2.17.0-rc.2 (2024-01-24) --------------------------------- - -No significant changes. - - -Parsec v2.17.0-rc.1 (2024-01-24) --------------------------------- +Parsec v2.17.0 (2024-02-13) +--------------------------- Features ~~~~~~~~ @@ -57,13 +25,17 @@ Features workspaces (`#5940 `__) - Bugfixes ~~~~~~~~ * Make write access to the Windows registry more robust. (`#6142 `__) +* Fix the filter list when filtering user profiles. + (`#6369 `__) + +* Add missing translation for offline availability dialog. + (`#6224 `__) Improved Documentation ~~~~~~~~~~~~~~~~~~~~~~ @@ -73,7 +45,6 @@ Improved Documentation (`#5630 `__) - Parsec v2.16.3 (2023-12-01) --------------------------- diff --git a/docs/conf.py b/docs/conf.py index e9007d0d090..22fb537027a 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ # the built documents. # # The short X.Y version. -version = "2.17.0-rc.5+dev" +version = "2.17.0" # The full version, including alpha/beta/rc tags. release = version diff --git a/licenses/BUSL-Scille.txt b/licenses/BUSL-Scille.txt index 716b8245327..f8c44943be2 100644 --- a/licenses/BUSL-Scille.txt +++ b/licenses/BUSL-Scille.txt @@ -2,7 +2,7 @@ PARSEC BUSINESS SOURCE LICENSE AGREEMENT Business Source License 1.1 Licensor: Scille SAS -Licensed Work: Parsec v2.17.0-rc.5+dev +Licensed Work: Parsec v2.17.0 The Licensed Work is © 2016-2021 Scille SAS Additional Use Grant: You may make production use of the Licensed Work, provided @@ -19,7 +19,7 @@ Additional Use Grant: You may make production use of the Licensed Work, provided 2) use the Licensed Work for use in a governmental or any for-profit entity with more than fifty (50) users. -Change Date: Feb 06, 2028 +Change Date: Feb 12, 2028 Change License: GNU Affero General Public License, Version 3 (AGPLv3) diff --git a/misc/version_updater.py b/misc/version_updater.py index b0aa753d28d..82aaea5d992 100644 --- a/misc/version_updater.py +++ b/misc/version_updater.py @@ -69,7 +69,7 @@ class Tool(enum.Enum): Tool.Poetry: "1.3.2", Tool.Node: "18.12.0", Tool.WasmPack: "0.11.0", - Tool.Parsec: "2.17.0-rc.5+dev", + Tool.Parsec: "2.17.0", } diff --git a/packaging/snap/snap/snapcraft.yaml b/packaging/snap/snap/snapcraft.yaml index 840b5bee159..cbebc2e8eb6 100644 --- a/packaging/snap/snap/snapcraft.yaml +++ b/packaging/snap/snap/snapcraft.yaml @@ -1,5 +1,5 @@ name: parsec -version: 2.17.0-rc.5+dev +version: 2.17.0 summary: Secure cloud framework # 79 char long summary description: | Parsec is an open-source cloud-based application that allow simple yet diff --git a/parsec/_version.py b/parsec/_version.py index 3c63dabda67..2a4a6aae4ad 100644 --- a/parsec/_version.py +++ b/parsec/_version.py @@ -3,4 +3,4 @@ # This file is imported from __init__.py and exec'd from setup.py -__version__ = "v2.17.0-rc.5+dev" +__version__ = "v2.17.0" diff --git a/pyproject.toml b/pyproject.toml index 99690a39577..0accef9c676 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "parsec-cloud" -version = "v2.17.0-rc.5+dev" +version = "v2.17.0" description = "Secure cloud framework" authors = ["Scille SAS "] readme = "README.rst"