Skip to content

Commit 70b159b

Browse files
committed
fluent-bundle 0.14.4
1 parent 19dd06a commit 70b159b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

fluent-bundle/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-bundle 0.14.4 (January 31, 2021)
8+
- Expose `FluentResource::source()`.
9+
- Update `ouroboros` to 0.8.
10+
711
## fluent-bundle 0.14.3 (January 24, 2021)
812
- Use the `Parser::parse_runtime` in `FluentResource::try_new`.
913
- Update to `fluent-syntax` 0.10.2.

fluent-bundle/Cargo.toml

Lines changed: 3 additions & 3 deletions
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.3"
7+
version = "0.14.4"
88
edition = "2018"
99
authors = [
1010
"Zibi Braniecki <[email protected]>",
@@ -27,9 +27,9 @@ include = [
2727

2828
[dependencies]
2929
fluent-langneg = "0.13"
30-
fluent-syntax = { version = "0.10.2", path = "../fluent-syntax" }
30+
fluent-syntax = { version = "0.10.3", path = "../fluent-syntax" }
3131
intl_pluralrules = "7.0.1"
32-
ouroboros = "0.7"
32+
ouroboros = "0.8"
3333
smallvec = "1"
3434
unic-langid = "0.9"
3535
intl-memoizer = { version = "0.5", path = "../intl-memoizer" }

fluent-bundle/src/resource.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ use ouroboros::self_referencing;
88
pub struct InnerFluentResource {
99
string: String,
1010
#[borrows(string)]
11+
#[covariant]
1112
ast: ast::Resource<&'this str>,
1213
}
1314

0 commit comments

Comments
 (0)