Skip to content

Commit

Permalink
Bump fluent-fallback to 0.7.0 (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregtatum committed Nov 9, 2022
1 parent 6254832 commit d53526f
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
4 changes: 4 additions & 0 deletions fluent-fallback/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

-

## fluent-fallback 0.7.0 (Nov 9, 2022)
- The `ResourceId`s are now stored as a `HashSet` rather than as a Vec. Adding a
duplicate `ResourceId` is now a noop.

## fluent-fallback 0.6.0 (Dec 17, 2021)
- Add `ResourceId` struct which allows fluent resources to be optional.

Expand Down
2 changes: 1 addition & 1 deletion fluent-fallback/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = """
High-level abstraction model for managing localization resources
and runtime localization lifecycle.
"""
version = "0.6.0"
version = "0.7.0"
edition = "2021"
authors = [
"Zibi Braniecki <gandalf@mozilla.com>",
Expand Down
3 changes: 3 additions & 0 deletions fluent-resmgr/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

-

## fluent-resmgr 0.0.6 (Nov 9, 2022)
- Update `fluent-fallback` to 0.7.0.

## fluent-resmgr 0.0.5 (Dec 17, 2021)
- Update `fluent-fallback` to 0.6.0.

Expand Down
4 changes: 2 additions & 2 deletions fluent-resmgr/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-resmgr"
description = """
Resource manager for Fluent localization resources.
"""
version = "0.0.5"
version = "0.0.6"
authors = [
"Zibi Braniecki <gandalf@mozilla.com>",
"Staś Małolepszy <stas@mozilla.com>"
Expand All @@ -18,7 +18,7 @@ categories = ["localization", "internationalization"]

[dependencies]
fluent-bundle = { version = "0.15.2", path = "../fluent-bundle" }
fluent-fallback = { version = "0.6.0", path = "../fluent-fallback" }
fluent-fallback = { version = "0.7.0", path = "../fluent-fallback" }
unic-langid = "0.9"
elsa = "1.5"
futures = "0.3"
Expand Down
3 changes: 3 additions & 0 deletions fluent-testing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

-

## fluent-resmgr 0.0.3 (Nov 9, 2022)
- Update `fluent-fallback` to 0.7.0.

## fluent-resmgr 0.0.2 (Dec 17, 2021)
- Ensure all test scenarios have unique names.

Expand Down
4 changes: 2 additions & 2 deletions fluent-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "fluent-testing"
description = """
A collection of mock scenarios for testing fluent-rs components.
"""
version = "0.0.2"
version = "0.0.3"
authors = [
"Zibi Braniecki <zibi@braniecki.net>",
"Erik Nordin <enordin@mozilla.com>"
Expand All @@ -26,7 +26,7 @@ include = [

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

[features]
Expand Down

0 comments on commit d53526f

Please sign in to comment.