Skip to content

Commit dcdb231

Browse files
committed
chore(release): 0.1.1
1 parent 38634ff commit dcdb231

File tree

2 files changed

+41
-0
lines changed

2 files changed

+41
-0
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org) for commit guidelines.
44

5+
## [v0.1.1](https://github.com/alerque/fluent-lua/releases/v0.1.1) — 2022-03-10
6+
7+
### Bug Fixes
8+
9+
- Use rockspec syntax compatible with older LuaRocks
10+
511
## [v0.1.0](https://github.com/alerque/fluent-lua/releases/v0.1.0) ­ 2022-03-11
612

713
Completely overhaul the object handling using more robust Penlight class syntax variant.

rockspecs/fluent-0.1.1-0.rockspec

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
rockspec_format = "1.0"
2+
package = "fluent"
3+
version = "0.1.1-0"
4+
5+
source = {
6+
url = "git://github.com/alerque/fluent-lua.git",
7+
dir = "fluent.lua",
8+
tag = "v0.1.1"
9+
}
10+
11+
description = {
12+
summary = "Lua implementation of Project Fluent",
13+
detailed = [[A Lua port of Project Fluent, a localization paradigm designed to unleash
14+
the entire expressive power of natural language translations.]],
15+
license = "MIT",
16+
homepage = "https://github.com/alerque/fluent-lua",
17+
}
18+
19+
dependencies = {
20+
"lua >= 5.1",
21+
"cldr",
22+
"luaepnf",
23+
"penlight"
24+
}
25+
26+
build = {
27+
type = "builtin",
28+
modules = {
29+
["fluent.init"] = "fluent/init.lua",
30+
["fluent.messages"] = "fluent/messages.lua",
31+
["fluent.parser"] = "fluent/parser.lua",
32+
["fluent.resource"] = "fluent/resource.lua",
33+
["fluent.syntax"] = "fluent/syntax.lua"
34+
}
35+
}

0 commit comments

Comments
 (0)