|
2 | 2 |
|
3 | 3 | All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org) for commit guidelines. |
4 | 4 |
|
5 | | -## v0.0.5 |
| 5 | +## v0.0.5 2021-12-24 |
6 | 6 |
|
7 | 7 | Cut a safe-haven release for anybody (including myself) using this in production before I move on. |
8 | 8 | Looking at Git history it looks like refinements include improved PEG grammars, saner namespacing for easier project integration, better use of Penlight classing, and more advanced handling of terms. |
9 | 9 | Dependencies now include cldr-lua, and tests now use CLDR compatible locales. |
10 | 10 | Lua 5.4 support was also officially added. |
11 | 11 |
|
12 | | -## v0.0.4 |
| 12 | +## v0.0.4 2019-09-27 |
13 | 13 |
|
14 | 14 | Add support for attributes plus access to messages using idiomatic Lua (table properties). |
15 | 15 |
|
16 | | -## v0.0.3 |
| 16 | +## v0.0.3 2019-09-26 |
17 | 17 |
|
18 | | -Add support for more types including format support for TextElement, StringLiteral, NumberLiteral, and VariableReference. Variable substitutions can be done by passing a parameters table to `format()`. Internally manipulating nodes in the API is now easier with meta methods. For example merge comments with `Comment + Comment`, attach children with `Message * Comment`, etc. |
| 18 | +Add support for more types including format support for TextElement, StringLiteral, NumberLiteral, and VariableReference. |
| 19 | +Variable substitutions can be done by passing a parameters table to `format()`. |
| 20 | +Internally manipulating nodes in the API is now easier with meta methods. |
| 21 | +For example merge comments with `Comment + Comment`, attach children with `Message * Comment`, etc. |
19 | 22 |
|
20 | | -## v0.0.2 |
| 23 | +## v0.0.2 2019-09-25 |
21 | 24 |
|
22 | | -Massage the AST returned by the PEG grammar so that about 1/3 of the possible types look like the reference Fluent spec. A basic Lua API is starting to take shape, modeled most closely to the Python implementation. It is possible to load and parse almost any FTL file, and possible to format any messages that are plain strings (no parameters, attributes, functions, or other jazz yet). Note there is no locale handling yet so it's only usable with separate instances per locale. Also `add_messages()` likely only works once, so cram your whole FTL resource in there for now. |
| 25 | +Massage the AST returned by the PEG grammar so that about 1/3 of the possible types look like the reference Fluent spec. |
| 26 | +A basic Lua API is starting to take shape, modeled most closely to the Python implementation. |
| 27 | +It is possible to load and parse almost any FTL file, and possible to format any messages that are plain strings (no parameters, attributes, functions, or other jazz yet). |
| 28 | +Note there is no locale handling yet so it's only usable with separate instances per locale. |
| 29 | +Also `add_messages()` likely only works once, so cram your whole FTL resource in there for now. |
23 | 30 |
|
24 | | -## v0.0.1 |
| 31 | +## v0.0.1 2019-09-14 |
25 | 32 |
|
26 | | -Complete a PEG grammar based parser for the entire 1.0 Fluent file format spec. All the pieces are there, but it's only partially tested. It at least parses a few basic types of entries. The AST it returns is straight out of *luaebnf* and probably needs massaging to match the reference ones (via capture groups?), then it needs testing against the upstream fixtures. |
| 33 | +Complete a PEG grammar based parser for the entire 1.0 Fluent file format spec. |
| 34 | +All the pieces are there, but it's only partially tested. |
| 35 | +It at least parses a few basic types of entries. |
| 36 | +The AST it returns is straight out of *luaebnf* and probably needs massaging to match the reference ones (via capture groups?), then it needs testing against the upstream fixtures. |
27 | 37 |
|
28 | | -## v0.0.0 |
| 38 | +## v0.0.0 2019-09-12 |
29 | 39 |
|
30 | | -Initialize project with some boiler plate Lua apparatus. |
| 40 | +Initialize project with some boilerplate Lua apparatus. |
31 | 41 |
|
32 | 42 | <!-- generated by git-cliff --> |
0 commit comments