Skip to content

Commit 42a66fe

Browse files
committed
v0.19.0
1 parent edf11fe commit 42a66fe

File tree

7 files changed

+11
-8
lines changed

7 files changed

+11
-8
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.19.0] - 2023-11-12
11+
1012
### Added
1113

1214
- Added flag `--respect-ignores`. By default, files explicitly passed to stylua (e.g. `stylua foo.lua`) will always be formatted, regardless of whether the file is ignored. Enabling this flag will consider `.styluaignore` or glob matches before formatting the file. ([#765](https://github.com/JohnnyMorganz/StyLua/issues/765))
@@ -727,7 +729,8 @@ This feature is enabled by default, it can be disabled using `--no-editorconfig`
727729

728730
Initial alpha release
729731

730-
[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.18.2...HEAD
732+
[unreleased]: https://github.com/JohnnyMorganz/StyLua/compare/v0.19.0...HEAD
733+
[0.19.0]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.19.0
731734
[0.18.2]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.18.2
732735
[0.18.1]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.18.1
733736
[0.18.0]: https://github.com/JohnnyMorganz/StyLua/releases/tag/v0.18.0

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 = "stylua"
3-
version = "0.18.2"
3+
version = "0.19.0"
44
authors = ["JohnnyMorganz <[email protected]>"]
55
description = "A code formatter for Lua"
66
license = "MPL-2.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add the following to your `.pre-commit-config.yaml` file:
5656

5757
```yaml
5858
- repo: https://github.com/JohnnyMorganz/StyLua
59-
rev: v0.18.2
59+
rev: v0.19.0
6060
hooks:
6161
- id: stylua # or stylua-system / stylua-github
6262
```

stylua-npm-bin/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

stylua-npm-bin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@johnnymorganz/stylua-bin",
3-
"version": "0.18.2",
3+
"version": "0.19.0",
44
"description": "A code formatter for Lua",
55
"bin": {
66
"stylua": "./run.js"

wasm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"JohnnyMorganz <[email protected]>"
55
],
66
"description": "A code formatter for Lua",
7-
"version": "0.18.2",
7+
"version": "0.19.0",
88
"license": "MPL-2.0",
99
"readme": "README.md",
1010
"repository": {

0 commit comments

Comments
 (0)