Skip to content

Commit 3f121eb

Browse files
Release 0.17.2 (#318)
1 parent efb7c63 commit 3f121eb

File tree

8 files changed

+10
-8
lines changed

8 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## 0.17.2
4+
35
* add `convert_function_to_assignment` rule ([#317](https://github.com/seaofvoices/darklua/pull/317))
46
* fix module types when bundling code ([#300](https://github.com/seaofvoices/darklua/pull/300))
57
* improve the `compute_expression` rule to compute the length of strings ([#316](https://github.com/seaofvoices/darklua/pull/316))

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darklua"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors = ["jeparlefrancais <[email protected]>"]
55
edition = "2018"
66
readme = "README.md"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ rokit add seaofvoices/darklua
4242
If you are already using Foreman, then installing darklua is as simple as adding this line in the `foreman.toml` file:
4343

4444
```toml
45-
darklua = { github = "seaofvoices/darklua", version = "=0.17.1" }
45+
darklua = { github = "seaofvoices/darklua", version = "=0.17.2" }
4646
```
4747

4848
# License

site/content/docs/bundle/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
<code>
226226
[package]
227227
name = "darklua"
228-
version = "0.17.1"
228+
version = "0.17.2"
229229
edition = "2018"
230230
readme = "README.md"
231231
description = "Transform Lua scripts"
@@ -350,7 +350,7 @@ harness = false
350350
name = "darklua",
351351
readme = "README.md",
352352
repository = "https://github.com/seaofvoices/darklua",
353-
version = "0.17.1",
353+
version = "0.17.2",
354354
},
355355
profile = {
356356
dev = {

site/content/docs/installation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rokit add seaofvoices/darklua
1818
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:
1919

2020
```toml
21-
darklua = { github = "seaofvoices/darklua", version = "=0.17.1" }
21+
darklua = { github = "seaofvoices/darklua", version = "=0.17.2" }
2222
```
2323

2424
## Download a Release

site/content/rules/convert_function_to_assignment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
description: Convert global function definitions to assignment statements
3-
added_in: "unreleased"
3+
added_in: "0.17.2"
44
parameters: []
55
examples:
66
- content: |

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
//!
1414
//! ```toml
1515
//! [dependencies]
16-
//! darklua = "0.17.1"
16+
//! darklua = "0.17.2"
1717
//! ```
1818
//!
1919
//! This library is designed for developers who want to integrate Lua/Luau transformation capabilities

0 commit comments

Comments
 (0)