Skip to content

Commit 5b5d3e3

Browse files
committed
0.13.0 release
1 parent 700937e commit 5b5d3e3

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ If it is not possible to install [LuaFileSystem](http://keplerproject.github.io/
3535

3636
For manual installation, only a Lua interpreter binary is required.
3737

38-
1. Download and unpack latest Luacheck release ([.zip](https://github.com/mpeterv/luacheck/archive/0.12.0.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.12.0.tar.gz)).
38+
1. Download and unpack latest Luacheck release ([.zip](https://github.com/mpeterv/luacheck/archive/0.13.0.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.13.0.tar.gz)).
3939
2. Run `install.lua <path>` script using the Lua interpreter. If Lua interpreter is not in `PATH`, invoke it using absolute path.
4040
3. Add `<path>/bin` to PATH or run Luacheck as `<path>/bin/luacheck`.
4141

@@ -86,7 +86,7 @@ There are a few plugins which allow using Luacheck directly inside an editor, sh
8686
* For Emacs, [Flycheck](http://www.flycheck.org/) contains [luacheck checker](http://www.flycheck.org/manual/latest/Supported-languages.html#Lua);
8787
* For Brackets, there is [linter.luacheck](https://github.com/Malcolm3141/brackets-luacheck) extension.
8888

89-
If you are a plugin developer, see [recommended way of using Luacheck in a plugin](http://luacheck.readthedocs.org/en/0.11.0/cli.html#stable-interface-for-editor-plugins-and-tools).
89+
If you are a plugin developer, see [recommended way of using Luacheck in a plugin](http://luacheck.readthedocs.org/en/0.13.0/cli.html#stable-interface-for-editor-plugins-and-tools).
9090

9191
### Other projects
9292

@@ -101,7 +101,7 @@ Documentation can be built using [Sphinx](http://sphinx-doc.org/): `sphinx-build
101101

102102
## Development
103103

104-
Luacheck is currently in development. The latest released version is 0.12.0. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
104+
Luacheck is currently in development. The latest released version is 0.13.0. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
105105

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

docsrc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.12.0'
51+
version = '0.13.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.12.0'
53+
release = '0.13.0'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docsrc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Contents:
1111
inline
1212
module
1313

14-
This is documentation for 0.12.0 version of `Luacheck <https://github.com/mpeterv/luacheck/>`_, a linter for `Lua <http://www.lua.org/>`_.
14+
This is documentation for 0.13.0 version of `Luacheck <https://github.com/mpeterv/luacheck/>`_, a linter for `Lua <http://www.lua.org/>`_.

src/luacheck/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ local format = require "luacheck.format"
55
local utils = require "luacheck.utils"
66

77
local luacheck = {
8-
_VERSION = "0.12.0"
8+
_VERSION = "0.13.0"
99
}
1010

1111
local function raw_validate_options(fname, opts)

0 commit comments

Comments
 (0)