From 816f3b585a7a60435ed12df7589d25065a6e4c2b Mon Sep 17 00:00:00 2001 From: Peter Melnichenko Date: Thu, 22 Dec 2016 13:18:07 +0300 Subject: [PATCH] 0.17.1 release --- CHANGELOG.md | 6 +++++- README.md | 4 ++-- docsrc/conf.py | 4 ++-- docsrc/index.rst | 2 +- src/luacheck/init.lua | 2 +- 5 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 517e4417..b949697a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,15 @@ # Change Log -## 0.17.1 (unreleased) +## 0.17.1 (2016-12-22) ### Fixes * Fixed error when using cache and there are warnings with codes `314` or `521`. +* Globals in `rockspec` std and `ngx` global in `ngx_lua` std are + no longer read-only (#87). +* Reverted changes to exit codes that conflicted with assumptions + made by luacheck checker in Syntastic (#85). ## 0.17.0 (2016-11-18) diff --git a/README.md b/README.md index 03955d4b..7f97357e 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ If it is not possible to install [LuaFileSystem](http://keplerproject.github.io/ 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.17.0.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.17.0.tar.gz)). +1. Download and unpack latest Luacheck release ([.zip](https://github.com/mpeterv/luacheck/archive/0.17.1.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.17.1.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`. @@ -107,7 +107,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.17.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.17.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. diff --git a/docsrc/conf.py b/docsrc/conf.py index 9204c107..45d39db1 100644 --- a/docsrc/conf.py +++ b/docsrc/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.17.0' +version = '0.17.1' # The full version, including alpha/beta/rc tags. -release = '0.17.0' +release = '0.17.1' # 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 3c9a9b20..ec676679 100644 --- a/docsrc/index.rst +++ b/docsrc/index.rst @@ -11,4 +11,4 @@ Contents: inline module -This is documentation for 0.17.0 version of `Luacheck `_, a linter for `Lua `_. +This is documentation for 0.17.1 version of `Luacheck `_, a linter for `Lua `_. diff --git a/src/luacheck/init.lua b/src/luacheck/init.lua index 379be2f9..bb3dfea1 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.17.0" + _VERSION = "0.17.1" } local function raw_validate_options(fname, opts)