diff --git a/CHANGELOG.md b/CHANGELOG.md index 91269d9f..ab47e0d1 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.17.1] - 2023-03-30 + ### Fixed - Bumped internal parser dependency which should fix parsing problems for comments with Chinese characters, and multiline string escapes @@ -651,7 +653,8 @@ This feature is enabled by default, it can be disabled using `--no-editorconfig` Initial alpha release -[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.17.0...HEAD +[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.17.1...HEAD +[0.17.1]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.17.1 [0.17.0]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.17.0 [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 diff --git a/Cargo.lock b/Cargo.lock index 337fdaf9..7f804e52 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -904,7 +904,7 @@ dependencies = [ [[package]] name = "stylua" -version = "0.17.0" +version = "0.17.1" dependencies = [ "anyhow", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index cc618751..23cc6b9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylua" -version = "0.17.0" +version = "0.17.1" authors = ["JohnnyMorganz "] description = "A code formatter for Lua" license = "MPL-2.0" diff --git a/README.md b/README.md index 003f6742..1add37b7 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.17.0 + rev: v0.17.1 hooks: - id: stylua # or stylua-system / stylua-github ``` @@ -78,10 +78,11 @@ StyLua is available on the [Docker Hub](https://hub.docker.com/r/johnnymorganz/s If you are using Docker, the easiest way to install StyLua is: ```dockerfile -COPY --from=JohnnyMorganz/StyLua:0.17.0 /stylua /usr/bin/stylua +COPY --from=JohnnyMorganz/StyLua:0.17.1 /stylua /usr/bin/stylua ``` ### Homebrew + StyLua is available on macOS via the [Homebrew](https://brew.sh) package manager. ```sh diff --git a/stylua-npm-bin/package-lock.json b/stylua-npm-bin/package-lock.json index ce93af76..d62a37d6 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.17.0", + "version": "0.17.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@johnnymorganz/stylua-bin", - "version": "0.17.0", + "version": "0.17.1", "hasInstallScript": true, "license": "MPL-2.0", "dependencies": { diff --git a/stylua-npm-bin/package.json b/stylua-npm-bin/package.json index 879fead7..98916d3a 100644 --- a/stylua-npm-bin/package.json +++ b/stylua-npm-bin/package.json @@ -1,6 +1,6 @@ { "name": "@johnnymorganz/stylua-bin", - "version": "0.17.0", + "version": "0.17.1", "description": "A code formatter for Lua", "bin": { "stylua": "./run.js" diff --git a/wasm/package.json b/wasm/package.json index 36a69bf3..4faeae66 100644 --- a/wasm/package.json +++ b/wasm/package.json @@ -4,7 +4,7 @@ "JohnnyMorganz " ], "description": "A code formatter for Lua", - "version": "0.17.0", + "version": "0.17.1", "license": "MPL-2.0", "readme": "README.md", "repository": {