Skip to content

Commit

Permalink
tag as v.1.0.3, add new rockspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
profan committed Feb 22, 2022
1 parent 6d0b8cf commit 05b999c
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion bk-tree.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
-- @module bk-tree
-- @author Robin Hübner
-- [email protected]
-- @release version 1.0.2
-- @release version 1.0.3
-- @license MIT

local bk_tree = {}
Expand Down
26 changes: 26 additions & 0 deletions rockspecs/bk-tree-1.0.3-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package = "bk-tree"
version = "1.0.3-1"
source = {
url = "https://github.com/profan/lua-bk-tree/archive/v1.0.3.tar.gz",
dir = "lua-bk-tree-1.0.3"
}

description = {
summary = "BK-trees, commonly used for finding near matches to strings.",
detailed = [[
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.
]],
homepage = "http://profan.github.io/lua-bk-tree/",
license = "MIT/X11"
}

dependencies = {
"lua >= 5.1"
}

build = {
type = "builtin",
modules = {
["bk-tree"] = "bk-tree.lua"
}
}

0 comments on commit 05b999c

Please sign in to comment.