Skip to content

Commit 6deaf29

Browse files
committedMay 8, 2017
0.20.0 release
1 parent 829e886 commit 6deaf29

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed
 

Diff for: ‎CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 0.20.0 (unreleased)
3+
## 0.20.0 (2017-05-08)
44

55
### Breaking changes
66

Diff for: ‎README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ If it is not possible to install [LuaFileSystem](http://keplerproject.github.io/
3737
### Binary download
3838

3939
For Windows there is experimental single-file 64-bit binary distribution, bundling Lua 5.3.4, Luacheck, LuaFileSystem, and LuaLanes using [LuaStatic](https://github.com/ers35/luastatic):
40-
[download](https://github.com/mpeterv/luacheck/releases/download/0.19.1/luacheck.exe), [build script](https://gist.github.com/mpeterv/93cf0c71a1ae4138141b0abadc43b525).
40+
[download](https://github.com/mpeterv/luacheck/releases/download/0.20.0/luacheck.exe), [build script](https://gist.github.com/mpeterv/93cf0c71a1ae4138141b0abadc43b525).
4141

4242
### Manual installation
4343

4444
For manual installation, only a Lua interpreter binary is required.
4545

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

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

114114
## Development
115115

116-
Luacheck is currently in development. The latest released version is 0.19.1. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
116+
Luacheck is currently in development. The latest released version is 0.20.0. The interface of the `luacheck` module may change between minor releases. The command line interface is fairly stable.
117117

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

Diff for: ‎docsrc/conf.py

+2-2
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.19.1'
51+
version = '0.20.0'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.19.1'
53+
release = '0.20.0'
5454

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

Diff for: ‎docsrc/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ Contents:
1111
inline
1212
module
1313

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

Diff for: ‎src/luacheck/init.lua

+1-1
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.19.1"
8+
_VERSION = "0.20.0"
99
}
1010

1111
local function raw_validate_options(fname, opts)

0 commit comments

Comments
 (0)