Skip to content

Commit f2457b4

Browse files
committed
Update changelog for version 0.9.0
1 parent 2a847b5 commit f2457b4

3 files changed

Lines changed: 24 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
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.9.0 (2025-09-25)
6+
7+
This release focuses on performance improvements and adds support for formatting multiple files at once.
8+
9+
### Added
10+
11+
- Support for formatting multiple files at once
12+
- Multi-threading when formatting multiple files for better performance
13+
14+
### Changed
15+
16+
- Improved performance on long GDScript files by 5 to 10%
17+
- Don't parse code multiple times when using `--safe` flag
18+
- Reuse parser instances and trees to reduce memory allocations
19+
- Updated dependencies to latest versions
20+
- Updated Zed editor configuration instructions
21+
22+
### Fixed
23+
24+
- Fixed commas ending up dangling on separate lines in some cases (after lambdas in function calls, arrays, and dictionaries)
25+
- Don't modify original syntax tree for safety checks
26+
527
## Release 0.8.1 (2025-09-23)
628

729
### Changed

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 = "gdscript-formatter"
3-
version = "0.8.1"
3+
version = "0.9.0"
44
edition = "2024"
55
description = "A GDScript code formatter using Topiary and Tree-sitter"
66
license = "MIT"

0 commit comments

Comments
 (0)