diff --git a/CHANGELOG.md b/CHANGELOG.md index 35ebcabc..a3cad8f1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +## 0.13.1 + * fix `remove_unused_variable` rule ([#192](https://github.com/seaofvoices/darklua/pull/192)) * add `except` parameter to skip comments when using the `remove_comments` rule ([#194](https://github.com/seaofvoices/darklua/pull/194)) * fix generators that creates spaces when writing field expressions, function statements and field-types ([#193](https://github.com/seaofvoices/darklua/pull/193)) diff --git a/Cargo.lock b/Cargo.lock index e0598680..ad9e24dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "darklua" -version = "0.13.0" +version = "0.13.1" dependencies = [ "anstyle", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index e81e1c31..025450b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darklua" -version = "0.13.0" +version = "0.13.1" authors = ["jeparlefrancais "] edition = "2018" readme = "README.md" diff --git a/README.md b/README.md index fe76a5bd..e460528b 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ You can try darklua directly into your browser! Check out https://darklua.com/tr If you are already using Foreman, then installing darklua is as simple as adding this line in the foreman.toml file: ```toml -darklua = { github = "seaofvoices/darklua", version = "=0.13.0" } +darklua = { github = "seaofvoices/darklua", version = "=0.13.1" } ``` ## [Aftman](https://github.com/LPGhatguy/aftman) diff --git a/site/content/docs/bundle/index.md b/site/content/docs/bundle/index.md index 56258807..9baf7fcf 100644 --- a/site/content/docs/bundle/index.md +++ b/site/content/docs/bundle/index.md @@ -205,7 +205,7 @@ jobs: [package] name = "darklua" -version = "0.13.0" +version = "0.13.1" edition = "2018" readme = "README.md" description = "Transform Lua scripts" @@ -330,7 +330,7 @@ harness = false name = "darklua", readme = "README.md", repository = "https://github.com/seaofvoices/darklua", - version = "0.13.0", + version = "0.13.1", }, profile = { dev = { diff --git a/site/content/docs/installation/index.md b/site/content/docs/installation/index.md index c3f1f53d..0b1e5ac4 100644 --- a/site/content/docs/installation/index.md +++ b/site/content/docs/installation/index.md @@ -10,7 +10,7 @@ order: 1 If you are already using [Foreman](https://github.com/Roblox/foreman), then installing darklua is as simple as adding this line in the `foreman.toml` file: ```toml -darklua = { github = "seaofvoices/darklua", version = "=0.13.0" } +darklua = { github = "seaofvoices/darklua", version = "=0.13.1" } ``` ## Download a Release diff --git a/site/content/rules/remove_comments.md b/site/content/rules/remove_comments.md index 3baf4367..02da5381 100644 --- a/site/content/rules/remove_comments.md +++ b/site/content/rules/remove_comments.md @@ -3,7 +3,7 @@ description: Removes comments added_in: "0.7.0" parameters: - name: except - added_in: "unreleased" + added_in: "0.13.1" type: string array description: Comments matching any of the given regular expressions will be kept examples: