Skip to content

Commit

Permalink
Release 0.13.1 (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeparlefrancais authored May 18, 2024
1 parent dd8173b commit 60c886e
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 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.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))
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.13.0"
version = "0.13.1"
authors = ["jeparlefrancais <[email protected]>"]
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 @@ -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)
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.13.0"
version = "0.13.1"
edition = "2018"
readme = "README.md"
description = "Transform Lua scripts"
Expand Down Expand Up @@ -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 = {
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.13.0" }
darklua = { github = "seaofvoices/darklua", version = "=0.13.1" }
```

## Download a Release
Expand Down
2 changes: 1 addition & 1 deletion site/content/rules/remove_comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 60c886e

Please sign in to comment.