Skip to content

Commit 51d9a83

Browse files
Bump version 3.2.0-rc.4+dev -> 3.2.0
1 parent 5c0ec52 commit 51d9a83

File tree

25 files changed

+68
-91
lines changed

25 files changed

+68
-91
lines changed

Cargo.lock

Lines changed: 23 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ publish = false
6161
repository = "https://github.com/Scille/parsec-cloud"
6262
# We use the same version for all crates.
6363
# This comment is used to prevent `taplo` from adding multiple spaces between the version and the comment.
64-
version = "3.2.0-rc.4+dev" # __PARSEC_VERSION__
64+
version = "3.2.0" # __PARSEC_VERSION__
6565

6666
[workspace.lints.clippy]
6767
undocumented_unsafe_blocks = "deny"

HISTORY.rst

Lines changed: 12 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -5,41 +5,8 @@ History
55
.. towncrier release notes start
66
77
8-
Parsec v3.2.0-rc.3 (2024-11-15)
9-
-------------------------------
10-
11-
Bugfixes
12-
~~~~~~~~
13-
14-
* Prompt the user for administrator permissions when winfsp is being installed,
15-
instead of failing silently if the installer wasn't already running in
16-
administrator mode.
17-
(`#8934 <https://github.com/Scille/parsec-cloud/issues/8934>`__)
18-
19-
20-
21-
Parsec v3.2.0-rc.2 (2024-11-14)
22-
-------------------------------
23-
24-
Bugfixes
25-
~~~~~~~~
26-
27-
* Confined files are no longer included in selection and file count
28-
(`#8913 <https://github.com/Scille/parsec-cloud/issues/8913>`__)
29-
30-
* No longer opens an empty context menu with right clicking in the list of files
31-
(`#8915 <https://github.com/Scille/parsec-cloud/issues/8915>`__)
32-
33-
34-
35-
Parsec v3.2.0-rc.1 (2024-11-08)
36-
-------------------------------
37-
38-
No significant changes.
39-
40-
41-
Parsec v3.2.0-rc.0 (2024-11-07)
42-
-------------------------------
8+
Parsec v3.2.0 (2024-11-22)
9+
--------------------------
4310

4411
Features
4512
~~~~~~~~
@@ -87,6 +54,16 @@ Bugfixes
8754
created/modified from the mount point.
8855
(`#8818 <https://github.com/Scille/parsec-cloud/issues/8818>`__)
8956

57+
* Prompt the user for administrator permissions when winfsp is being installed,
58+
instead of failing silently if the installer wasn't already running in
59+
administrator mode.
60+
(`#8934 <https://github.com/Scille/parsec-cloud/issues/8934>`__)
61+
62+
* Confined files are no longer included in selection and file count
63+
(`#8913 <https://github.com/Scille/parsec-cloud/issues/8913>`__)
64+
65+
* No longer opens an empty context menu with right clicking in the list of files
66+
(`#8915 <https://github.com/Scille/parsec-cloud/issues/8915>`__)
9067

9168
Miscellaneous internal changes
9269
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PARSEC BUSINESS SOURCE LICENSE AGREEMENT
22

33
Business Source License 1.1
44
Licensor: Scille SAS
5-
Licensed Work: Parsec v3.2.0-rc.4+dev
5+
Licensed Work: Parsec v3.2.0
66
The Licensed Work is © 2016-2021 Scille SAS
77

88
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
1919
2) use the Licensed Work for use in a governmental or any
2020
for-profit entity with more than fifty (50) users.
2121

22-
Change Date: Nov 14, 2028
22+
Change Date: Nov 21, 2028
2323

2424

2525
Change License: GNU Affero General Public License, Version 3 (AGPLv3)

bindings/electron/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "libparsec_bindings_electron",
3-
"version": "3.2.0-rc.4+dev",
3+
"version": "3.2.0",
44
"description": "",
55
"main": "dist/libparsec.node",
66
"scripts": {

bindings/web/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindings/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "libparsec_bindings_web",
33
"private": true,
4-
"version": "3.2.0-rc.4+dev",
4+
"version": "3.2.0",
55
"license": "BUSL-1.1",
66
"scripts": {
77
"build": "node scripts/build.js",

cli/tests/integration/version.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
fn version() {
33
crate::assert_cmd_success!("--version").stdout(
44
// Using `concat!` simplify updating the version using `version-updater`
5-
concat!("parsec-cli 3.2.0-rc.4+dev", "\n"),
5+
concat!("parsec-cli 3.2.0", "\n"),
66
);
77
}

client/electron/assets/electron-publisher-custom.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
const { GitHubPublisher } = require('electron-publish/out/gitHubPublisher');
44

5-
const VERSION = '3.2.0-rc.4+dev';
5+
const VERSION = '3.2.0';
66

77
class CustomGitHubPublisher extends GitHubPublisher {
88
/**

0 commit comments

Comments
 (0)