Skip to content

Commit ff0091c

Browse files
committed
Update to version 0.18.1
1 parent 5cab29f commit ff0091c

File tree

4 files changed

+39
-20
lines changed

4 files changed

+39
-20
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.18.1 (2025-11-25)
6+
7+
### Fixed
8+
9+
- `if/elif/else` statements on single lines wrapping incorrectly (#175)
10+
- Godot addon: support for non-English characters
11+
512
## Release 0.18.0 (2025-11-18)
613

714
### Added

Cargo.lock

Lines changed: 19 additions & 19 deletions
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.18.0"
3+
version = "0.18.1"
44
edition = "2024"
55
description = "A GDScript code formatter and linter using Topiary and Tree-sitter"
66
license = "MIT"

tmp.gd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
extends Node
2+
3+
# Accented characters for testing:
4+
# á é í ó ú
5+
# à ê ô ã õ
6+
# ç Ç
7+
8+
var text: String = "pão, direção, ação, mão, coração."
9+
10+
11+
func _ready() -> void:
12+
print(text)

0 commit comments

Comments
 (0)