Skip to content

Commit

Permalink
0.18.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeterv committed Jan 10, 2017
1 parent 3fb53ee commit 72371dd
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,13 +1,13 @@
# Change Log

## 0.18.0 (unreleased)
## 0.18.0 (2017-01-10)

### New features and improvements

* Indirect mutations of read-only globals through local aliases
are now detected (e.g. `local t = table; t.foo = "bar"`).
* New CLI, config, and inline option `not_globals` for removing
defined standard and custom globals.
defined standard and custom globals (#88).
* Custom globals defined as mutable using `globals` option
can now be set to read-only using `read_globals` option
in overwriting settings (previously `globals` had priority
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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.1.zip) [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.17.1.tar.gz)).
1. Download and unpack latest Luacheck release ([.zip](https://github.com/mpeterv/luacheck/archive/0.18.0.zip), [.tar.gz](https://github.com/mpeterv/luacheck/archive/0.18.0.tar.gz)).
2. Run `install.lua <path>` script using the Lua interpreter. If Lua interpreter is not in `PATH`, invoke it using absolute path.
3. Add `<path>/bin` to PATH or run Luacheck as `<path>/bin/luacheck`.

Expand Down Expand Up @@ -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.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.18.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.

Expand Down
4 changes: 2 additions & 2 deletions docsrc/conf.py
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.17.1'
version = '0.18.0'
# The full version, including alpha/beta/rc tags.
release = '0.17.1'
release = '0.18.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docsrc/index.rst
Expand Up @@ -11,4 +11,4 @@ Contents:
inline
module

This is documentation for 0.17.1 version of `Luacheck <https://github.com/mpeterv/luacheck/>`_, a linter for `Lua <http://www.lua.org/>`_.
This is documentation for 0.18.0 version of `Luacheck <https://github.com/mpeterv/luacheck/>`_, a linter for `Lua <http://www.lua.org/>`_.
2 changes: 1 addition & 1 deletion src/luacheck/init.lua
Expand Up @@ -5,7 +5,7 @@ local format = require "luacheck.format"
local utils = require "luacheck.utils"

local luacheck = {
_VERSION = "0.17.1"
_VERSION = "0.18.0"
}

local function raw_validate_options(fname, opts)
Expand Down

0 comments on commit 72371dd

Please sign in to comment.