Skip to content

Commit 3bb366e

Browse files
committed
Update changelog for version 0.6.0, bump version
1 parent 0fc7dba commit 3bb366e

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.6.0 (2025-09-19)
6+
7+
This release improves formatting consistency and fixes several edge cases related to spacing, comments, and function/class definitions.
8+
9+
### Added
10+
11+
- Space after commas in setter and getter declarations
12+
- Two blank lines before annotated functions
13+
14+
### Changed
15+
16+
- Improved the detection and removal of dangling semicolons
17+
- Removed unnecessary topiary rule for `@tool` annotations
18+
19+
### Fixed
20+
21+
- Functions with a single statement on a single line (e.g., `func a(): pass`) being incorrectly merged with the following function
22+
- Class definitions placed next to one another losing line breaks between them
23+
- Inline comments after annotations being misplaced
24+
- Comments in arrays and dictionaries being incorrectly formatted in some cases
25+
- Comments in enums being misaligned in some cases
26+
527
## Release 0.5.1 (2025-09-18)
628

729
This release fixes critical bugs that could cause data loss during formatting.

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.5.1"
3+
version = "0.6.0"
44
edition = "2021"
55
description = "A GDScript code formatter using Topiary and Tree-sitter"
66
license = "MIT"

0 commit comments

Comments
 (0)