Skip to content

Commit

Permalink
0.25.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
hishamhm committed Aug 10, 2021
1 parent a6bd371 commit abf7386
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,16 @@
# Changelog

## 0.25.0 (2020-08-25)

### New features

* New values for CLI option --std: lua54, lua54c
* New lua54 standard library definitions

### Fixes

* Lua 5.4 allows 31bits utf8 codepoint

## 0.24.0 (2020-08-20)

### Changes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -39,7 +39,7 @@ For parallel checking Luacheck additionally requires [LuaLanes](https://github.c
### Windows binary download

For Windows there is 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/luarocks/luacheck/releases/download/0.24.0/luacheck.exe).
[download](https://github.com/luarocks/luacheck/releases/download/0.25.0/luacheck.exe).

## Basic usage

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.24.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.25.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.24.0'
version = '0.25.0'
# The full version, including alpha/beta/rc tags.
release = '0.24.0'
release = '0.25.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.24.0 version of `Luacheck <https://github.com/luarocks/luacheck/>`_, a linter for `Lua <https://www.lua.org/>`_.
This is documentation for 0.25.0 version of `Luacheck <https://github.com/luarocks/luacheck/>`_, a linter for `Lua <https://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.24.0"
_VERSION = "0.25.0"
}

local function raw_validate_options(fname, opts, stds, context)
Expand Down

0 comments on commit abf7386

Please sign in to comment.