Skip to content

Commit

Permalink
0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeterv committed Dec 16, 2014
1 parent 0e37420 commit 41dacf9
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Documentation is available [online](http://luacheck.readthedocs.org). If Luachec

## Development

Luacheck is currently in development. The latest released version is 0.7.0. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
Luacheck is currently in development. The latest released version is 0.7.1. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.

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

Expand Down
2 changes: 1 addition & 1 deletion bin/luacheck.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/env lua
local version = "0.7.0"
local version = "0.7.1"

local function fatal(msg)
io.stderr:write("Fatal error: "..msg.."\n")
Expand Down
42 changes: 42 additions & 0 deletions rockspecs/luacheck-0.7.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
package = "luacheck"
version = "0.7.1-1"
source = {
url = "git://github.com/mpeterv/luacheck.git",
tag = "0.7.1"
}
description = {
summary = "A simple static analyzer for Lua",
detailed = [[
Luacheck is a 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.
]],
homepage = "https://github.com/mpeterv/luacheck",
license = "MIT/X11"
}
dependencies = {
"lua >= 5.1, < 5.4",
"argparse >= 0.3.0",
"ansicolors >= 1.0-1",
"luafilesystem >= 1.6.2"
}
build = {
type = "builtin",
modules = {
luacheck = "src/luacheck.lua",
["luacheck.scan"] = "src/luacheck/scan.lua",
["luacheck.check"] = "src/luacheck/check.lua",
["luacheck.parser"] = "src/luacheck/parser.lua",
["luacheck.lexer"] = "src/luacheck/lexer.lua",
["luacheck.filter"] = "src/luacheck/filter.lua",
["luacheck.options"] = "src/luacheck/options.lua",
["luacheck.stds"] = "src/luacheck/stds.lua",
["luacheck.expand_rockspec"] = "src/luacheck/expand_rockspec.lua",
["luacheck.utils"] = "src/luacheck/utils.lua",
["luacheck.format"] = "src/luacheck/format.lua"
},
install = {
bin = {
luacheck = "bin/luacheck.lua"
}
},
copy_directories = {"spec", "doc"}
}

0 comments on commit 41dacf9

Please sign in to comment.