Skip to content

Commit 6c9d957

Browse files
committed
fluent-bundle 0.15.0
1 parent 2c72e93 commit 6c9d957

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

fluent-bundle/CHANGELOG.md

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

55
-
66

7+
## fluent-bundle 0.15.0 (February 9, 2021)
8+
- Document the crate.
9+
- Update `fluent-syntax` to 0.11.0.
10+
- Add `iai` benchmarks.
11+
- Switch `FluentArgs::add` to `FluentArgs::set`.
12+
- Make `FluentArgs::set` take `Into<V>`.
13+
- Make `FluentMessage` and `FluentAttribute` fields use getters.
14+
- Sort `FluentArgs` keys.
15+
- Turn `FluentMessage` and `FluentAttribute` to be shallow wrappers around `AST` entries.
16+
717
## fluent-bundle 0.14.4 (January 31, 2021)
818
- Expose `FluentResource::source()`.
919
- Update `ouroboros` to 0.8.

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 localization system designed to unleash the entire expressive power of
55
natural language translations.
66
"""
7-
version = "0.14.4"
7+
version = "0.15.0"
88
edition = "2018"
99
authors = [
1010
"Zibi Braniecki <[email protected]>",

fluent-fallback/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ categories = ["localization", "internationalization"]
1919

2020
[dependencies]
2121
chunky-vec = "0.1"
22-
fluent-bundle = { version = "0.14", path = "../fluent-bundle" }
22+
fluent-bundle = { version = "0.15", path = "../fluent-bundle" }
2323
futures = "0.3"
2424
once_cell = "1.5"
2525
async-trait = "0.1"

fluent-resmgr/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = ["localization", "l10n", "i18n", "intl", "internationalization"]
1717
categories = ["localization", "internationalization"]
1818

1919
[dependencies]
20-
fluent-bundle = { version = "0.14", path = "../fluent-bundle" }
20+
fluent-bundle = { version = "0.15", path = "../fluent-bundle" }
2121
unic-langid = "0.9"
2222
fluent-fallback = { version = "0.3", path = "../fluent-fallback" }
2323
elsa = "1.3.2"

fluent/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ include = [
2626
]
2727

2828
[dependencies]
29-
fluent-bundle = { version = "0.14.4", path = "../fluent-bundle" }
29+
fluent-bundle = { version = "0.15", path = "../fluent-bundle" }
3030
unic-langid = "0.9"
3131
fluent-pseudo = { version = "0.2", optional = true }

0 commit comments

Comments
 (0)