diff --git a/CHANGELOG.md b/CHANGELOG.md index 740376f..580e7ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org) for commit guidelines. +## [v0.2.0](https://github.com/alerque/fluent-lua/releases/v0.2.0) — 2022-04-16 + +### Bug Fixes + +- Inform Git about fixtures with special requirements +- Correct access protocol to GitHub in dev rockspec +- Correct logic errors revealed by new Luacheck release + +### Features + +- Add external access to file loader + ## [v0.1.3](https://github.com/alerque/fluent-lua/releases/v0.1.3) — 2022-03-11 ### Bug Fixes diff --git a/rockspecs/fluent-0.2.0-0.rockspec b/rockspecs/fluent-0.2.0-0.rockspec new file mode 100644 index 0000000..621015f --- /dev/null +++ b/rockspecs/fluent-0.2.0-0.rockspec @@ -0,0 +1,35 @@ +rockspec_format = "1.0" +package = "fluent" +version = "0.2.0-0" + +source = { + url = "git+https://github.com/alerque/fluent-lua.git", + dir = "fluent-lua", + tag = "v0.2.0" +} + +description = { + summary = "Lua implementation of Project Fluent", + detailed = [[A Lua port of Project Fluent, a localization paradigm designed to unleash + the entire expressive power of natural language translations.]], + license = "MIT", + homepage = "https://github.com/alerque/fluent-lua", +} + +dependencies = { + "lua >= 5.1", + "cldr", + "luaepnf", + "penlight" +} + +build = { + type = "builtin", + modules = { + ["fluent.init"] = "fluent/init.lua", + ["fluent.messages"] = "fluent/messages.lua", + ["fluent.parser"] = "fluent/parser.lua", + ["fluent.resource"] = "fluent/resource.lua", + ["fluent.syntax"] = "fluent/syntax.lua" + } +}