Skip to content

Commit d53526f

Browse files
authored
Bump fluent-fallback to 0.7.0 (#283)
1 parent 6254832 commit d53526f

File tree

6 files changed

+15
-5
lines changed

6 files changed

+15
-5
lines changed

fluent-fallback/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
-
66

7+
## fluent-fallback 0.7.0 (Nov 9, 2022)
8+
- The `ResourceId`s are now stored as a `HashSet` rather than as a Vec. Adding a
9+
duplicate `ResourceId` is now a noop.
10+
711
## fluent-fallback 0.6.0 (Dec 17, 2021)
812
- Add `ResourceId` struct which allows fluent resources to be optional.
913

fluent-fallback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = """
44
High-level abstraction model for managing localization resources
55
and runtime localization lifecycle.
66
"""
7-
version = "0.6.0"
7+
version = "0.7.0"
88
edition = "2021"
99
authors = [
1010
"Zibi Braniecki <gandalf@mozilla.com>",

fluent-resmgr/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
-
66

7+
## fluent-resmgr 0.0.6 (Nov 9, 2022)
8+
- Update `fluent-fallback` to 0.7.0.
9+
710
## fluent-resmgr 0.0.5 (Dec 17, 2021)
811
- Update `fluent-fallback` to 0.6.0.
912

fluent-resmgr/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "fluent-resmgr"
33
description = """
44
Resource manager for Fluent localization resources.
55
"""
6-
version = "0.0.5"
6+
version = "0.0.6"
77
authors = [
88
"Zibi Braniecki <gandalf@mozilla.com>",
99
"Staś Małolepszy <stas@mozilla.com>"
@@ -18,7 +18,7 @@ categories = ["localization", "internationalization"]
1818

1919
[dependencies]
2020
fluent-bundle = { version = "0.15.2", path = "../fluent-bundle" }
21-
fluent-fallback = { version = "0.6.0", path = "../fluent-fallback" }
21+
fluent-fallback = { version = "0.7.0", path = "../fluent-fallback" }
2222
unic-langid = "0.9"
2323
elsa = "1.5"
2424
futures = "0.3"

fluent-testing/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
-
66

7+
## fluent-resmgr 0.0.3 (Nov 9, 2022)
8+
- Update `fluent-fallback` to 0.7.0.
9+
710
## fluent-resmgr 0.0.2 (Dec 17, 2021)
811
- Ensure all test scenarios have unique names.
912

fluent-testing/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "fluent-testing"
33
description = """
44
A collection of mock scenarios for testing fluent-rs components.
55
"""
6-
version = "0.0.2"
6+
version = "0.0.3"
77
authors = [
88
"Zibi Braniecki <zibi@braniecki.net>",
99
"Erik Nordin <enordin@mozilla.com>"
@@ -26,7 +26,7 @@ include = [
2626

2727
[dependencies]
2828
fluent-bundle = { version = "0.15.2", path = "../fluent-bundle" }
29-
fluent-fallback = { version = "0.6.0", path = "../fluent-fallback" }
29+
fluent-fallback = { version = "0.7.0", path = "../fluent-fallback" }
3030
tokio = { version = "1.0", optional = true, features = ["fs", "rt-multi-thread", "macros", "io-util"] }
3131

3232
[features]

0 commit comments

Comments
 (0)