Skip to content

Commit f22da4e

Browse files
committed
chore: Bump versions across workspace
1 parent 1ca071e commit f22da4e

File tree

17 files changed

+29
-13
lines changed

17 files changed

+29
-13
lines changed

Cargo.toml

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

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

5151
[workspace.metadata.typos.default]
5252
locale = "en-us"

fluent-bundle/CHANGELOG.md

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

33
## Unreleased
4+
5+
## fluent-bundle 0.16.0 (May 20, 2025)
46
- Implement NUMBER builtin
57
- Improve examples
68
- Refactor to remove unnecessary named lifetimes

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## fluent-fallback 0.7.2 (May 20, 2025)
46
- Refactor to remove unnecessary named lifetimes
57
- Cleanup docs
68
- Satiate Clippy

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## fluent-pseudo 0.3.3 (May 20, 2025)
46
- Eliminate unsafe block using `once_cell` instead of undefined behavior of mutable reference to mutable static
57
- Cleanup docs
68
- Satiate Clippy

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## fluent-resmgr 0.0.8 (May 20, 2025)
46
- Cleanup docs
57
- Satiate Clippy
68
- Bump `elsa` to 1.10

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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## fluent-syntax 0.12.0 (May 20, 2025)
46
- Add module `serializer`
57
- De-ambiguate dependencies vs. features
68
- Cleanup docs

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.12.0"
88
edition.workspace = true
99
rust-version = "1.64.0"
1010
homepage.workspace = true

fluent-testing/CHANGELOG.md

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

33
## Unreleased
4+
5+
## fluent-testing 0.0.5 (May 20, 2025)
46
- Cleanup docs
57

68
## fluent-testing 0.0.4 (March 16, 2024)

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## fluent 0.16.2 (May 20, 2025)
46
- Cleanup docs
57

68
## fluent 0.16.1 (March 16, 2024)

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

33
## Unreleased
4+
5+
## intl-memoizer 0.5.3 (May 20, 2025)
46
- Cleanup docs
57

68
## intl-memoizer 0.5.2 (March 16, 2024)

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)