File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 4
4
5
5
- …
6
6
7
+ ## fluent 0.3.0 (August 3, 2018)
8
+
9
+ - Add support for custom functions in MessageContext. (#50 )
10
+ - Switch error handling to ` annotate-snippets crate ` .
11
+ - Separate ` fluent ` and ` fluent-syntax ` crates.
12
+ - Handle cyclic references. (#55 )
13
+ - Switch parser binary to use ` clap ` .
14
+ - Switch plural rules handling to ` intl_pluralrules ` . (#56 )
15
+ - Add ` FluentValue::as_number `
16
+ - Move ` IntlPluralRules ` initialization into ` MessageContext::new `
17
+ - General cleanups in line with ` cargo fmt ` and ` cargo clippy `
18
+
7
19
## fluent 0.2.0 (February 11, 2018)
8
20
9
21
- Support Rust 1.23 stable
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ description = """
4
4
A localization library designed to unleash the entire expressive power of
5
5
natural language translations.
6
6
"""
7
- version = " 0.2 .0"
7
+ version = " 0.3 .0"
8
8
authors = [
9
9
" Zibi Braniecki <gandalf@mozilla.com>" ,
10
10
" Staś Małolepszy <stas@mozilla.com>"
@@ -22,4 +22,4 @@ fluent-locale = "0.3"
22
22
fluent-syntax = " 0.1"
23
23
failure = " 0.1"
24
24
failure_derive = " 0.1"
25
- intl_pluralrules = " 0.8 "
25
+ intl_pluralrules = " 0.9 "
You can’t perform that action at this time.
0 commit comments