diff --git a/CHANGELOG.md b/CHANGELOG.md index 12e1ed1..979a86d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## 0.17.2 + * add `convert_function_to_assignment` rule ([#317](https://github.com/seaofvoices/darklua/pull/317)) * fix module types when bundling code ([#300](https://github.com/seaofvoices/darklua/pull/300)) * improve the `compute_expression` rule to compute the length of strings ([#316](https://github.com/seaofvoices/darklua/pull/316)) diff --git a/Cargo.lock b/Cargo.lock index edf4439..ca9e830 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -384,7 +384,7 @@ dependencies = [ [[package]] name = "darklua" -version = "0.17.1" +version = "0.17.2" dependencies = [ "anstyle", "assert_cmd", diff --git a/Cargo.toml b/Cargo.toml index 95fffc4..970175e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "darklua" -version = "0.17.1" +version = "0.17.2" authors = ["jeparlefrancais "] edition = "2018" readme = "README.md" diff --git a/README.md b/README.md index 4f5d0ae..8fb411b 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ rokit add seaofvoices/darklua 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.17.1" } +darklua = { github = "seaofvoices/darklua", version = "=0.17.2" } ``` # License diff --git a/site/content/docs/bundle/index.md b/site/content/docs/bundle/index.md index 55fcefb..1e7e6d4 100644 --- a/site/content/docs/bundle/index.md +++ b/site/content/docs/bundle/index.md @@ -225,7 +225,7 @@ jobs: [package] name = "darklua" -version = "0.17.1" +version = "0.17.2" edition = "2018" readme = "README.md" description = "Transform Lua scripts" @@ -350,7 +350,7 @@ harness = false name = "darklua", readme = "README.md", repository = "https://github.com/seaofvoices/darklua", - version = "0.17.1", + version = "0.17.2", }, profile = { dev = { diff --git a/site/content/docs/installation/index.md b/site/content/docs/installation/index.md index 60a36f3..846c92c 100644 --- a/site/content/docs/installation/index.md +++ b/site/content/docs/installation/index.md @@ -18,7 +18,7 @@ rokit add seaofvoices/darklua 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.17.1" } +darklua = { github = "seaofvoices/darklua", version = "=0.17.2" } ``` ## Download a Release diff --git a/site/content/rules/convert_function_to_assignment.md b/site/content/rules/convert_function_to_assignment.md index cf10843..177befb 100644 --- a/site/content/rules/convert_function_to_assignment.md +++ b/site/content/rules/convert_function_to_assignment.md @@ -1,6 +1,6 @@ --- description: Convert global function definitions to assignment statements -added_in: "unreleased" +added_in: "0.17.2" parameters: [] examples: - content: | diff --git a/src/lib.rs b/src/lib.rs index df50121..8793b6c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ //! //! ```toml //! [dependencies] -//! darklua = "0.17.1" +//! darklua = "0.17.2" //! ``` //! //! This library is designed for developers who want to integrate Lua/Luau transformation capabilities