Skip to content

Commit f4bc8d9

Browse files
committed
0.8.0 release
1 parent 42d6736 commit f4bc8d9

File tree

3 files changed

+46
-2
lines changed

3 files changed

+46
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Documentation is available [online](http://luacheck.readthedocs.org). If Luachec
4848

4949
## Development
5050

51-
Luacheck is currently in development. The latest released version is 0.7.3. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
51+
Luacheck is currently in development. The latest released version is 0.8.0. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
5252

5353
Use the Luacheck issue tracker on GitHub to submit bugs, suggestions and questions. Any pull requests are welcome, too.
5454

bin/luacheck.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env lua
2-
local version = "0.7.3"
2+
local version = "0.8.0"
33

44
local function fatal(msg)
55
io.stderr:write("Fatal error: "..msg.."\n")

rockspecs/luacheck-0.8.0-1.rockspec

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
package = "luacheck"
2+
version = "0.8.0-1"
3+
source = {
4+
url = "git://github.com/mpeterv/luacheck.git",
5+
tag = "0.8.0"
6+
}
7+
description = {
8+
summary = "A static analyzer and a linter for Lua",
9+
detailed = [[
10+
Luacheck is a command-line tool for linting and static analysis of Lua code. It is able to spot usage of undefined global variables, unused local variables and a few other typical problems within Lua programs.
11+
]],
12+
homepage = "https://github.com/mpeterv/luacheck",
13+
license = "MIT/X11"
14+
}
15+
dependencies = {
16+
"lua >= 5.1, < 5.4",
17+
"luafilesystem >= 1.6.3"
18+
}
19+
build = {
20+
type = "builtin",
21+
modules = {
22+
luacheck = "src/luacheck/init.lua",
23+
["luacheck.linearize"] = "src/luacheck/linearize.lua",
24+
["luacheck.analyze"] = "src/luacheck/analyze.lua",
25+
["luacheck.reachability"] = "src/luacheck/reachability.lua",
26+
["luacheck.core_utils"] = "src/luacheck/core_utils.lua",
27+
["luacheck.check"] = "src/luacheck/check.lua",
28+
["luacheck.parser"] = "src/luacheck/parser.lua",
29+
["luacheck.lexer"] = "src/luacheck/lexer.lua",
30+
["luacheck.filter"] = "src/luacheck/filter.lua",
31+
["luacheck.options"] = "src/luacheck/options.lua",
32+
["luacheck.stds"] = "src/luacheck/stds.lua",
33+
["luacheck.expand_rockspec"] = "src/luacheck/expand_rockspec.lua",
34+
["luacheck.format"] = "src/luacheck/format.lua",
35+
["luacheck.utils"] = "src/luacheck/utils.lua",
36+
["luacheck.argparse"] = "src/luacheck/argparse.lua"
37+
},
38+
install = {
39+
bin = {
40+
luacheck = "bin/luacheck.lua"
41+
}
42+
},
43+
copy_directories = {"spec", "doc"}
44+
}

0 commit comments

Comments
 (0)