Skip to content

Commit 8a1c156

Browse files
committed
chore: Bump versions across workspace
1 parent 3b248b0 commit 8a1c156

File tree

17 files changed

+48
-22
lines changed

17 files changed

+48
-22
lines changed

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ thiserror = "2.0"
4444
tokio = "1.38"
4545
unic-langid = "0.9"
4646

47-
fluent-bundle = { version = "0.15.3", path = "fluent-bundle" }
48-
fluent-fallback = { version = "0.7.1", path = "fluent-fallback" }
49-
fluent-pseudo = { version = "0.3.2", path = "fluent-pseudo" }
50-
fluent-syntax = { version = "0.11.1", path = "fluent-syntax" }
51-
intl-memoizer = { version = "0.5.2", path = "intl-memoizer" }
47+
fluent-bundle = { version = "0.16.0", path = "fluent-bundle" }
48+
fluent-fallback = { version = "0.7.2", path = "fluent-fallback" }
49+
fluent-pseudo = { version = "0.3.3", path = "fluent-pseudo" }
50+
fluent-syntax = { version = "0.12.0", path = "fluent-syntax" }
51+
intl-memoizer = { version = "0.5.3", path = "intl-memoizer" }
5252

5353
[workspace.metadata.typos.default]
5454
locale = "en-us"

fluent-bundle/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
# Changelog
22

33
## Unreleased
4-
- Bump `self_cell` to 1.x
4+
5+
## fluent-bundle 0.16.0 (May 20, 2025)
6+
- Implement NUMBER builtin
7+
- Improve examples
8+
- Refactor to remove unnecessary named lifetimes
9+
- Satiate Clippy
10+
- Bump `smallvec` to 1.13
11+
- Bump `rand` to 0.9
12+
- Bump `self_cell` to 1.2
513
- Bump `serde_yaml` to 0.9
614

715
## fluent-bundle 0.15.3 (March 16, 2024)

fluent-bundle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A low-level implementation of a collection of localization messages for a single locale for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.15.3"
7+
version = "0.16.0"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

fluent-fallback/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## fluent-fallback 0.7.2 (May 20, 2025)
6+
- Cleanup docs
7+
- Refactor to remove unnecessary named lifetimes
8+
- Satiate Clippy
9+
- Bump `once_cell` to 1.21
610

711
## fluent-fallback 0.7.1 (March 16, 2024)
812
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent-fallback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A high-level implementation of a collection of locale bundles including fallback between locales for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.7.1"
7+
version = "0.7.2"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

fluent-pseudo/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## fluent-pseudo 0.3.3 (May 20, 2025)
6+
- Eliminate unsafe block using `once_cell` instead of undefined behavior of mutable reference to mutable static
7+
- Cleanup docs
8+
- Satiate Clippy
9+
- Bump `regex` to 1.11
610

711
## fluent-pseudo 0.3.2 (March 16, 2024)
812
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent-pseudo/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A pseudolocalization and transformation API for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.3.2"
7+
version = "0.3.3"
88
edition.workspace = true
99
rust-version = "1.65.0"
1010
homepage.workspace = true

fluent-resmgr/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## fluent-resmgr 0.0.8 (May 20, 2025)
6+
- Cleanup docs
7+
- Satiate Clippy
8+
- Bump `elsa` to 1.10
69

710
## fluent-resmgr 0.0.7 (March 16, 2024)
811
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent-resmgr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A standalone solution for managing resource files and returning locale bundles for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.0.7"
7+
version = "0.0.8"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

fluent-syntax/CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Changelog
22

33
## Unreleased
4-
- Add module `serializer`.
5-
-
4+
5+
## fluent-syntax 0.12.0 (May 20, 2025)
6+
- Add module `serializer`
7+
- De-ambiguate dependencies vs. features
8+
- Cleanup docs
9+
- Satiate Clippy
610

711
## fluent-syntax 0.11.1 (March 16, 2024)
812
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent-syntax/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A low-level parser, AST, and serializer API for the syntax used by Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.11.1"
7+
version = "0.11.2"
88
edition.workspace = true
99
rust-version = "1.64.0"
1010
homepage.workspace = true

fluent-testing/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## fluent-testing 0.0.5 (May 20, 2025)
6+
- Cleanup docs
67

78
## fluent-testing 0.0.4 (March 16, 2024)
89
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent-testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A collection of mock scenarios for testing components of Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.0.4"
7+
version = "0.0.5"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

fluent/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## fluent 0.16.2 (May 20, 2025)
6+
- Cleanup docs
67

78
## fluent 0.16.1 (March 16, 2024)
89
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

fluent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
An umbrella crate exposing the combined features of fluent-rs crates with additional convenience macros for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.16.1"
7+
version = "0.16.2"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

intl-memoizer/CHANGELOG.md

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

33
## Unreleased
44

5-
-
5+
## intl-memoizer 0.5.3 (May 20, 2025)
6+
- Cleanup docs
67

78
## intl-memoizer 0.5.2 (March 16, 2024)
89
- This is a 'safe harbor' release prior to bringing on non-Mozilla community maintainers

intl-memoizer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
A memoizer specifically tailored for storing lazy-initialized intl formatters for Project Fluent,
55
a localization system designed to unleash the entire expressive power of natural language translations.
66
"""
7-
version = "0.5.2"
7+
version = "0.5.3"
88
edition.workspace = true
99
rust-version.workspace = true
1010
homepage.workspace = true

0 commit comments

Comments
 (0)