Skip to content

Commit

Permalink
Release 0.11.2 (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeparlefrancais authored Nov 3, 2023
1 parent 9ae3158 commit 7032199
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 0.11.2

* fix bundling to handle modules with early return calls. This change also makes the bundled code preserve the module require ordering ([#147](https://github.com/seaofvoices/darklua/pull/147))
* fix bundling to avoid token reference removal errors ([#146](https://github.com/seaofvoices/darklua/pull/146))
* fix `remove_types` rule to handle type cast of expressions that could return multiple values ([#142](https://github.com/seaofvoices/darklua/pull/142))
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.11.1"
version = "0.11.2"
authors = ["jeparlefrancais <jeparlefrancais21@gmail.com>"]
edition = "2018"
readme = "README.md"
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 @@ -205,7 +205,7 @@ jobs:
<code>
[package]
name = "darklua"
version = "0.11.1"
version = "0.11.2"
edition = "2018"
readme = "README.md"
description = "Transform Lua scripts"
Expand Down Expand Up @@ -331,7 +331,7 @@ harness = false
name = "darklua",
readme = "README.md",
repository = "https://github.com/seaofvoices/darklua",
version = "0.11.1",
version = "0.11.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 @@ -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.11.1" }
darklua = { github = "seaofvoices/darklua", version = "=0.11.2" }
```

## Download a Release
Expand Down

0 comments on commit 7032199

Please sign in to comment.