Skip to content

Commit d2bdb2f

Browse files
committed
0.9.0 release
1 parent 45e8082 commit d2bdb2f

File tree

3 files changed

+48
-3
lines changed

3 files changed

+48
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ If it is not possible to install `luafilesystem` in your environment, use `luaro
1616

1717
### Manual installation
1818

19-
1. Download and unpack latest release ([.zip](https://github.com/mpeterv/luacheck/archive/0.8.0.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.8.0.tar.gz)).
19+
1. Download and unpack latest release ([.zip](https://github.com/mpeterv/luacheck/archive/0.9.0.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.9.0.tar.gz)).
2020
2. Copy contents of `src` directory to a directory for Lua libraries. Run `lua -e 'print(package.path)'` to see where it could be.
2121
3. Copy `bin/luacheck.lua` to `PATH`. On Windows, also copy `bin/luacheck.bat`.
2222

@@ -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.8.0. 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.9.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.8.0"
2+
local version = "0.9.0"
33

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

rockspecs/luacheck-0.9.0-1.rockspec

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
package = "luacheck"
2+
version = "0.9.0-1"
3+
source = {
4+
url = "git://github.com/mpeterv/luacheck.git",
5+
tag = "0.9.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 <http://opensource.org/licenses/MIT>"
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.inline_options"] = "src/luacheck/inline_options.lua",
33+
["luacheck.stds"] = "src/luacheck/stds.lua",
34+
["luacheck.expand_rockspec"] = "src/luacheck/expand_rockspec.lua",
35+
["luacheck.format"] = "src/luacheck/format.lua",
36+
["luacheck.utils"] = "src/luacheck/utils.lua",
37+
["luacheck.argparse"] = "src/luacheck/argparse.lua"
38+
},
39+
install = {
40+
bin = {
41+
luacheck = "bin/luacheck.lua"
42+
}
43+
},
44+
copy_directories = {"spec", "doc"}
45+
}

0 commit comments

Comments
 (0)