diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d792602..c02e39b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.16.1] - 2023-02-10 + ### Fixed - Fixed mistransformation of a function argument in a multilined function call when the argument contains a comment, causing a syntax error. We now attempt to hang the expression ([#648](https://github.com/JohnnyMorganz/StyLua/issues/648)) @@ -620,7 +622,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Initial alpha release -[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.16.0...HEAD +[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.16.1...HEAD +[0.16.1]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.16.1 [0.16.0]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.16.0 [0.15.3]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.15.3 [0.15.2]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.15.2 diff --git a/Cargo.lock b/Cargo.lock index c3d0c9e3..9a6414c0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -917,7 +917,7 @@ dependencies = [ [[package]] name = "stylua" -version = "0.16.0" +version = "0.16.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 5961dcc8..928ea22f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylua" -version = "0.16.0" +version = "0.16.1" authors = ["JohnnyMorganz "] description = "A code formatter for Lua" license = "MPL-2.0" diff --git a/README.md b/README.md index 7ee7d6b1..7f7b5ab4 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Add the following to your `.pre-commit-config.yaml` file: ```yaml - repo: https://github.com/JohnnyMorganz/StyLua - rev: v0.16.0 + rev: v0.16.1 hooks: - id: stylua # or stylua-system / stylua-github ``` diff --git a/stylua-npm-bin/package-lock.json b/stylua-npm-bin/package-lock.json index 153d38e8..abe7a101 100644 --- a/stylua-npm-bin/package-lock.json +++ b/stylua-npm-bin/package-lock.json @@ -1,12 +1,12 @@ { "name": "@johnnymorganz/stylua-bin", - "version": "0.16.0", + "version": "0.16.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@johnnymorganz/stylua-bin", - "version": "0.16.0", + "version": "0.16.1", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/stylua-npm-bin/package.json b/stylua-npm-bin/package.json index 973c4eb1..0b533d7f 100644 --- a/stylua-npm-bin/package.json +++ b/stylua-npm-bin/package.json @@ -1,6 +1,6 @@ { "name": "@johnnymorganz/stylua-bin", - "version": "0.16.0", + "version": "0.16.1", "description": "A code formatter for Lua", "bin": { "stylua": "./run.js" diff --git a/wasm/package.json b/wasm/package.json index e70c4040..235c6195 100644 --- a/wasm/package.json +++ b/wasm/package.json @@ -4,7 +4,7 @@ "JohnnyMorganz " ], "description": "A code formatter for Lua", - "version": "0.16.0", + "version": "0.16.1", "license": "MPL-2.0", "readme": "README.md", "repository": {