Skip to content

Commit b99ced2

Browse files
committed
Update the changelog and cargo files for release 0.8.1
1 parent 69c289c commit b99ced2

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
This file documents the changes made to the formatter with each release. This project uses [semantic versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## Release 0.8.1 (2025-09-23)
6+
7+
### Changed
8+
9+
- Shifted to a fork of the GDScript parser to allow addressing upstream issues sooner
10+
11+
### Fixed
12+
13+
- Incorrect formatting of functions defined inline with class definitions
14+
- Space added in function parameter type inference
15+
- Support for annotations in match patterns
16+
- Support for conditional expressions in match statements
17+
- Comments sometimes being aligned to the previous line indentation level instead of the current one in functions and classes
18+
- Definitions inline with a class definition not being wrapped to a new line
19+
520
## Release 0.8.0 (2025-09-22)
621

722
This release adds a safe mode to help make the formatter more resilient, and adds configuration instructions to integrate it into Zed, Helix, and JetBrains Rider.

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gdscript-formatter"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
edition = "2021"
55
description = "A GDScript code formatter using Topiary and Tree-sitter"
66
license = "MIT"
@@ -12,7 +12,7 @@ clap = { version = "4.0", features = ["derive"] }
1212
topiary-core = "0.6"
1313
tree-sitter-gdscript = { git = "https://github.com/NathanLovato/tree-sitter-gdscript.git", branch = "gdquest/GDScript-formatter" }
1414
regex = "1.11"
15-
tree-sitter = "0.25.9"
15+
tree-sitter = "0.25.10"
1616

1717
[dev-dependencies]
1818
test_each_file = "0.3.5"

0 commit comments

Comments
 (0)