Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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))
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "darklua"
version = "0.17.1"
version = "0.17.2"
authors = ["jeparlefrancais <jeparlefrancais21@gmail.com>"]
edition = "2018"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions site/content/docs/bundle/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ jobs:
<code>
[package]
name = "darklua"
version = "0.17.1"
version = "0.17.2"
edition = "2018"
readme = "README.md"
description = "Transform Lua scripts"
Expand Down Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion site/content/docs/installation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion site/content/rules/convert_function_to_assignment.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
description: Convert global function definitions to assignment statements
added_in: "unreleased"
added_in: "0.17.2"
parameters: []
examples:
- content: |
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading