Skip to content

Commit

Permalink
chore(release): 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Apr 16, 2022
1 parent 9f39284 commit e1cd413
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
35 changes: 35 additions & 0 deletions rockspecs/fluent-0.2.0-0.rockspec
Original file line number Diff line number Diff line change
@@ -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"
}
}

0 comments on commit e1cd413

Please sign in to comment.