|
1 | 1 | # Changelog
|
2 | 2 |
|
3 |
| -## Unreleased |
| 3 | +## fluent-syntax 0.6.0 (January 31, 2018) |
| 4 | + |
| 5 | + - Implement Fluent Syntax 0.5. |
| 6 | + |
| 7 | + - Add support for terms. |
| 8 | + - Add support for `#`, `##` and `###` comments. |
| 9 | + - Remove support for tags. |
| 10 | + - Add support for `=` after the identifier in message and term |
| 11 | + defintions. |
| 12 | + - Forbid newlines in string expressions. |
| 13 | + - Allow trailing comma in call expression argument lists. |
| 14 | + |
| 15 | + In fluent-syntax 0.6.x the new Syntax 0.5 is supported alongside the old |
| 16 | + Syntax 0.4. This should make migrations easier. |
| 17 | + |
| 18 | + `FluentParser` will correctly parse Syntax 0.4 comments (prefixed with |
| 19 | + `//`), sections and message definitions without the `=` after the |
| 20 | + identifier. The one exception are tags which are no longer supported. |
| 21 | + Please use attributed defined on terms instead. |
| 22 | + |
| 23 | + `FluentSerializer` always serializes using the new Syntax 0.5. |
| 24 | + |
| 25 | + - Add `AST.Placeable` (#64) |
| 26 | + |
| 27 | + Added in Syntax Spec 0.4, `AST.Placeable` provides exact span data about |
| 28 | + the opening and closing brace of placeables. |
| 29 | + |
| 30 | + - Expose `FluentSerializer.serializeExpression`. (#134) |
| 31 | + |
| 32 | + - Serialize standalone comments with surrounding white-space. |
| 33 | + |
| 34 | + - Allow blank lines inside of messages. (#76) |
| 35 | + |
| 36 | + - Trim trailing newline from Comments. (#77) |
4 | 37 |
|
5 |
| - - … |
6 | 38 |
|
7 | 39 | ## fluent-syntax 0.5.0 (June 23rd, 2017)
|
8 | 40 |
|
|
0 commit comments