Skip to content

Commit e42ab8f

Browse files
chore(release): prepare for 0.2.3
1 parent fee4ee3 commit e42ab8f

File tree

6 files changed

+24
-8
lines changed

6 files changed

+24
-8
lines changed

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [0.2.3](https://github.com/UnknownPlatypus/djangofmt/compare/v0.2.2..0.2.3) - 2025-11-30
4+
5+
### ⛰️ Features
6+
7+
- *(format)* Add pretty-printing of parse errors ([#104](https://github.com/UnknownPlatypus/djangofmt/issues/104)) - ([fee4ee3](https://github.com/UnknownPlatypus/djangofmt/commit/fee4ee3eacb748e77d6062813e044bace68adda1))
8+
- *(format)* Add custom `<!-- djangofmt:ignore -->` directive ([#102](https://github.com/UnknownPlatypus/djangofmt/issues/102)) - ([c9b20bb](https://github.com/UnknownPlatypus/djangofmt/commit/c9b20bb6a8e22fb4c9bf9bde89a51154de04a1aa))
9+
- *(format)* Improvements on inline node formatting ([#75](https://github.com/UnknownPlatypus/djangofmt/issues/75)) - ([58a4f8f](https://github.com/UnknownPlatypus/djangofmt/commit/58a4f8fa3479cbd33ecbe02b22c8792440b2560b))
10+
11+
### 🚜 Refactor
12+
13+
- *(error)* Remove `anyhow` and use custom error enum ([#100](https://github.com/UnknownPlatypus/djangofmt/issues/100)) - ([e39f71a](https://github.com/UnknownPlatypus/djangofmt/commit/e39f71a0c90086cc5f0080059b2dd201c37cf006))
14+
15+
### 🧪 Testing
16+
17+
- *(clippy)* Enable strict clippy rules ([#97](https://github.com/UnknownPlatypus/djangofmt/issues/97)) - ([cd7d6ea](https://github.com/UnknownPlatypus/djangofmt/commit/cd7d6eaaf0a42990fade3c813660b4f40fbf140e))
18+
- *(ecosystem-check)* Fix ecosystem check comment urls and support codeberg.com ([#101](https://github.com/UnknownPlatypus/djangofmt/issues/101)) - ([337592c](https://github.com/UnknownPlatypus/djangofmt/commit/337592cb96d8d8e3a12f3992bddf87e77f9fe925))
19+
- *(ecosystem-check)* Fix ecosystem-check and support other providers than github ([#99](https://github.com/UnknownPlatypus/djangofmt/issues/99)) - ([13e8bb2](https://github.com/UnknownPlatypus/djangofmt/commit/13e8bb28c4913d38fc2c1fe52b2ce8e1d9d30b94))
20+
321
## [0.2.2](https://github.com/UnknownPlatypus/djangofmt/compare/v0.2.1..v0.2.2) - 2025-06-12
422

523
### ⛰️ Features
@@ -45,5 +63,3 @@
4563
## New Contributors ❤️
4664

4765
- @UnknownPlatypus made their first contribution
48-
49-
<!-- generated by git-cliff -->

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 = "djangofmt"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Thibaut Decombe <[email protected]>"]
55
# Please update rustfmt.toml when bumping the Rust edition
66
edition = "2024"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Sample `.pre-commit-config.yaml`:
4646

4747
```yaml
4848
- repo: https://github.com/UnknownPlatypus/djangofmt-pre-commit
49-
rev: v0.2.2
49+
rev: v0.2.3
5050
hooks:
5151
- id: djangofmt
5252
```
@@ -196,7 +196,7 @@ There is a dedicated pre-commit for these:
196196

197197
```yaml
198198
- repo: https://github.com/UnknownPlatypus/djangofmt-pre-commit
199-
rev: v0.2.2
199+
rev: v0.2.3
200200
hooks:
201201
- id: djangofmt-svg
202202
```

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "djangofmt"
7-
version = "0.2.2"
7+
version = "0.2.3"
88
description = "A fast, HTML aware, Django template formatter, written in Rust."
99
readme = "README.md"
1010
keywords = [

src/args.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ mod tests {
184184
success: true
185185
exit_code: 0
186186
----- stdout -----
187-
djangofmt 0.2.2
187+
djangofmt 0.2.3
188188
189189
----- stderr -----
190190
"###);

0 commit comments

Comments
 (0)