Skip to content

Commit

Permalink
chore: Release 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arichard4 committed Jun 10, 2023
1 parent c697e32 commit a258512
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file.

## [1.1.1] - 2022-06-09

### Bug Fixes

- Correct compound operators to not crash on modifying upvalues (#96) - @arichard4
- Fix warning 582 (error prone negation) not applying to subexpressions (#94) - @appgurueu

### Improvements

- Update Löve standard to 11.4 (#95) - @RunningDroid
- Documentation improvements (#92 and #89) - @rcloran and @hamrach

## [1.1.0] - 2022-12-19

### Features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,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.4.4, Luacheck, LuaFileSystem, and LuaLanes using [LuaStatic](https://github.com/ers35/luastatic):
[download](https://github.com/lunarmodules/luacheck/releases/download/v1.1.0/luacheck.exe).
[download](https://github.com/lunarmodules/luacheck/releases/download/v1.1.1/luacheck.exe).

## Basic usage

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

## Development

Luacheck is currently in development. The latest released version is v1.1.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 v1.1.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.

Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
default: "."
runs:
using: docker
image: docker://ghcr.io/lunarmodules/luacheck:v1.1.0
image: docker://ghcr.io/lunarmodules/luacheck:v1.1.1
entrypoint: sh
args:
- -c
Expand Down
4 changes: 2 additions & 2 deletions docsrc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.1.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion src/luacheck/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ local format = require "luacheck.format"
local utils = require "luacheck.utils"

local luacheck = {
_VERSION = "1.1.0"
_VERSION = "1.1.1"
}

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

0 comments on commit a258512

Please sign in to comment.