Skip to content

Commit 67e4d0d

Browse files
committed
chore(release): 0.1.0
1 parent cddb46f commit 67e4d0d

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
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.0 ­ 2022-03-11
6+
7+
Completely overhaul the object handling using more robust Penlight class syntax variant.
8+
Property and attribute indexing now works in many more situations.
9+
The test coverage is greatly improved as well, so the things that work are provably functional.
10+
Many edge case bugs where resources leaked between locales have been fixed.
11+
Loading multiple locales into a bundle and updating existing messages works as expected.
12+
513
## v0.0.5 ­ 2021-12-24
614

715
Cut a safe-haven release for anybody (including myself) using this in production before I move on.

rockspecs/fluent-0.1.0-0.rockspec

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
rockspec_format = "1.0"
2+
package = "fluent"
3+
version = "0.1.0-0"
4+
5+
source = {
6+
url = "git://github.com/alerque/fluent-lua.git",
7+
dir = "fluent.lua",
8+
tag = "v0.1.0"
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+
labels = { "i18n" }
18+
}
19+
20+
dependencies = {
21+
"lua >= 5.1",
22+
"cldr",
23+
"luaepnf",
24+
"penlight"
25+
}
26+
27+
build = {
28+
type = "builtin",
29+
modules = {
30+
["fluent.init"] = "fluent/init.lua",
31+
["fluent.messages"] = "fluent/messages.lua",
32+
["fluent.parser"] = "fluent/parser.lua",
33+
["fluent.resource"] = "fluent/resource.lua",
34+
["fluent.syntax"] = "fluent/syntax.lua"
35+
}
36+
}

0 commit comments

Comments
 (0)