Skip to content

Commit 60c886e

Browse files
Release 0.13.1 (#195)
1 parent dd8173b commit 60c886e

File tree

7 files changed

+9
-7
lines changed

7 files changed

+9
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.13.1
6+
57
* fix `remove_unused_variable` rule ([#192](https://github.com/seaofvoices/darklua/pull/192))
68
* add `except` parameter to skip comments when using the `remove_comments` rule ([#194](https://github.com/seaofvoices/darklua/pull/194))
79
* fix generators that creates spaces when writing field expressions, function statements and field-types ([#193](https://github.com/seaofvoices/darklua/pull/193))

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "darklua"
3-
version = "0.13.0"
3+
version = "0.13.1"
44
authors = ["jeparlefrancais <jeparlefrancais21@gmail.com>"]
55
edition = "2018"
66
readme = "README.md"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You can try darklua directly into your browser! Check out https://darklua.com/tr
2424
If you are already using Foreman, then installing darklua is as simple as adding this line in the foreman.toml file:
2525

2626
```toml
27-
darklua = { github = "seaofvoices/darklua", version = "=0.13.0" }
27+
darklua = { github = "seaofvoices/darklua", version = "=0.13.1" }
2828
```
2929

3030
## [Aftman](https://github.com/LPGhatguy/aftman)

site/content/docs/bundle/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
<code>
206206
[package]
207207
name = "darklua"
208-
version = "0.13.0"
208+
version = "0.13.1"
209209
edition = "2018"
210210
readme = "README.md"
211211
description = "Transform Lua scripts"
@@ -330,7 +330,7 @@ harness = false
330330
name = "darklua",
331331
readme = "README.md",
332332
repository = "https://github.com/seaofvoices/darklua",
333-
version = "0.13.0",
333+
version = "0.13.1",
334334
},
335335
profile = {
336336
dev = {

site/content/docs/installation/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ order: 1
1010
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:
1111

1212
```toml
13-
darklua = { github = "seaofvoices/darklua", version = "=0.13.0" }
13+
darklua = { github = "seaofvoices/darklua", version = "=0.13.1" }
1414
```
1515

1616
## Download a Release

site/content/rules/remove_comments.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Removes comments
33
added_in: "0.7.0"
44
parameters:
55
- name: except
6-
added_in: "unreleased"
6+
added_in: "0.13.1"
77
type: string array
88
description: Comments matching any of the given regular expressions will be kept
99
examples:

0 commit comments

Comments
 (0)