Skip to content

Commit 124ee6d

Browse files
committed
version: 1.3.1
1 parent 4d92f63 commit 124ee6d

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = "html-entities"
2+
version = "1.3.1-0"
3+
4+
source = {
5+
url = "https://github.com/TiagoDanin/htmlEntities-for-lua/archive/1.3.1.tar.gz",
6+
dir = "htmlEntities-for-lua-1.3.1"
7+
}
8+
9+
description = {
10+
summary = "Module for lua, decoding HTML entities :)",
11+
detailed = "HTML entities decoding/encoding",
12+
homepage = "https://TiagoDanin.github.io/htmlEntities-for-lua/",
13+
maintainer = "Tiago Danin <TiagoDanin@outlook.com>",
14+
license = "MIT"
15+
}
16+
17+
dependencies = {
18+
"lua >= 5.1"
19+
}
20+
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
["htmlEntities"] = "src/htmlEntities.lua"
25+
}
26+
}

src/htmlEntities.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local global_module_name_htmlEntities = 'htmlEntities'
77

88
local htmlEntities = {
99
about = 'HTML entities decoding/encoding',
10-
version = '1.2.0',
10+
version = '1.3.1',
1111
name = 'htmlEntities-for-lua',
1212
author = 'Tiago Danin',
1313
license = 'MIT',

0 commit comments

Comments
 (0)