From 6deaf2910c186a038f8753cae178dcd4c4f93b56 Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Mon, 8 May 2017 22:27:13 +0300 Subject: [PATCH] 0.20.0 release --- CHANGELOG.md | 2 +- README.md | 6 +++--- docsrc/conf.py | 4 ++-- docsrc/index.rst | 2 +- src/luacheck/init.lua | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6eb9e49..35e6e31e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## 0.20.0 (unreleased) +## 0.20.0 (2017-05-08) ### Breaking changes diff --git a/README.md b/README.md index d4d8f547..05f6d27b 100644 --- a/README.md +++ b/README.md @@ -37,13 +37,13 @@ If it is not possible to install [LuaFileSystem](http://keplerproject.github.io/ ### Binary download 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): -[download](https://github.com/mpeterv/luacheck/releases/download/0.19.1/luacheck.exe), [build script](https://gist.github.com/mpeterv/93cf0c71a1ae4138141b0abadc43b525). +[download](https://github.com/mpeterv/luacheck/releases/download/0.20.0/luacheck.exe), [build script](https://gist.github.com/mpeterv/93cf0c71a1ae4138141b0abadc43b525). ### Manual installation For manual installation, only a Lua interpreter binary is required. -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)). +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)). 2. Run `install.lua ` script using the Lua interpreter. If Lua interpreter is not in `PATH`, invoke it using absolute path. 3. Add `/bin` to PATH or run Luacheck as `/bin/luacheck`. @@ -113,7 +113,7 @@ Documentation can be built using [Sphinx](http://sphinx-doc.org/): `sphinx-build ## Development -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. +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. Use the Luacheck issue tracker on GitHub to submit bugs, suggestions and questions. Any pull requests are welcome, too. diff --git a/docsrc/conf.py b/docsrc/conf.py index b5d089ed..63a9c707 100644 --- a/docsrc/conf.py +++ b/docsrc/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.19.1' +version = '0.20.0' # The full version, including alpha/beta/rc tags. -release = '0.19.1' +release = '0.20.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docsrc/index.rst b/docsrc/index.rst index 568734a1..76a60a80 100644 --- a/docsrc/index.rst +++ b/docsrc/index.rst @@ -11,4 +11,4 @@ Contents: inline module -This is documentation for 0.19.1 version of `Luacheck `_, a linter for `Lua `_. +This is documentation for 0.20.0 version of `Luacheck `_, a linter for `Lua `_. diff --git a/src/luacheck/init.lua b/src/luacheck/init.lua index 50763dcb..55e56279 100644 --- a/src/luacheck/init.lua +++ b/src/luacheck/init.lua @@ -5,7 +5,7 @@ local format = require "luacheck.format" local utils = require "luacheck.utils" local luacheck = { - _VERSION = "0.19.1" + _VERSION = "0.20.0" } local function raw_validate_options(fname, opts)