Skip to content

Commit ea1fca3

Browse files
Bump version 3.3.2-a.0+dev -> 3.3.2
1 parent d853cac commit ea1fca3

File tree

25 files changed

+70
-59
lines changed

25 files changed

+70
-59
lines changed

Cargo.lock

Lines changed: 24 additions & 24 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
@@ -63,7 +63,7 @@ publish = false
6363
repository = "https://github.com/Scille/parsec-cloud"
6464
# We use the same version for all crates.
6565
# This comment is used to prevent `taplo` from adding multiple spaces between the version and the comment.
66-
version = "3.3.2-a.0+dev" # __PARSEC_VERSION__
66+
version = "3.3.2" # __PARSEC_VERSION__
6767

6868
[workspace.lints.clippy]
6969
undocumented_unsafe_blocks = "deny"

HISTORY.rst

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,25 @@ History
44
.. towncrier release notes start
55
66
7+
Parsec v3.3.2 (2025-03-04)
8+
--------------------------
9+
10+
bugfixes
11+
~~~~~~~~
12+
13+
* Fix internal build issues
14+
(`#9849 <https://github.com/scille/parsec-cloud/issues/9854>`__)
15+
16+
17+
718
Parsec v3.3.1 (2025-03-04)
819
--------------------------
920

10-
Bugfixes
21+
bugfixes
1122
~~~~~~~~
1223

13-
* Fixes file opening and correctly displays an error message if it fails
14-
(`#9849 <https://github.com/Scille/parsec-cloud/issues/9849>`__)
24+
* fixes file opening and correctly displays an error message if it fails
25+
(`#9849 <https://github.com/scille/parsec-cloud/issues/9849>`__)
1526

1627

1728

LICENSE

Lines changed: 1 addition & 1 deletion
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.3.2-a.0+dev
5+
Licensed Work: Parsec v3.3.2
66
The Licensed Work is © 2016-2021 Scille SAS
77

88
Additional Use Grant: You may make production use of the Licensed Work, provided

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.3.2-a.0+dev",
3+
"version": "3.3.2",
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.3.2-a.0+dev",
4+
"version": "3.3.2",
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.3.2-a.0+dev", "\n"),
5+
concat!("parsec-cli 3.3.2", "\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.3.2-a.0+dev';
5+
const VERSION = '3.3.2';
66

77
class CustomGitHubPublisher extends GitHubPublisher {
88
/**

0 commit comments

Comments
 (0)