Skip to content

Commit 05b999c

Browse files
committed
tag as v.1.0.3, add new rockspec.
1 parent 6d0b8cf commit 05b999c

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

bk-tree.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
-- @module bk-tree
66
-- @author Robin Hübner
77
8-
-- @release version 1.0.2
8+
-- @release version 1.0.3
99
-- @license MIT
1010

1111
local bk_tree = {}

rockspecs/bk-tree-1.0.3-1.rockspec

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package = "bk-tree"
2+
version = "1.0.3-1"
3+
source = {
4+
url = "https://github.com/profan/lua-bk-tree/archive/v1.0.3.tar.gz",
5+
dir = "lua-bk-tree-1.0.3"
6+
}
7+
8+
description = {
9+
summary = "BK-trees, commonly used for finding near matches to strings.",
10+
detailed = [[
11+
Burkhard-Keller Trees or bk-trees, a datastructure commonly used for fuzzy string matching, spell checking or similar, comes with a levenshtein distance metric for measuring similarity.
12+
]],
13+
homepage = "http://profan.github.io/lua-bk-tree/",
14+
license = "MIT/X11"
15+
}
16+
17+
dependencies = {
18+
"lua >= 5.1"
19+
}
20+
21+
build = {
22+
type = "builtin",
23+
modules = {
24+
["bk-tree"] = "bk-tree.lua"
25+
}
26+
}

0 commit comments

Comments
 (0)