Skip to content

Commit 4708b43

Browse files
committed
release: v0.5.0
1 parent 0327e18 commit 4708b43

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## 0.5.0 - 2026-03-10
44

55
### Fixed
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Catches smart quotes, em dashes, fancy spaces, dangerous invisible characters
1616
```yaml
1717
repos:
1818
- repo: https://github.com/mit-d/check-unicode
19-
rev: v0.4.0
19+
rev: v0.5.0
2020
hooks:
2121
- id: check-unicode
2222
# or for auto-fix:

docs/check-unicode.1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Man page for check-unicode
22
.\" Generate with: man ./docs/check-unicode.1
3-
.TH CHECK\-UNICODE 1 "2026-02-28" "check-unicode 0.4.0" "User Commands"
3+
.TH CHECK\-UNICODE 1 "2026-02-28" "check-unicode 0.5.0" "User Commands"
44
.
55
.SH NAME
66
check\-unicode \- detect and fix non\-ASCII Unicode characters in text files
@@ -366,7 +366,7 @@ Use with pre\-commit:
366366
.RS
367367
repos:
368368
\- repo: https://github.com/mit\-d/check\-unicode
369-
rev: v0.4.0
369+
rev: v0.5.0
370370
hooks:
371371
\- id: check\-unicode
372372
# or for auto\-fix:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ ignore-words-list = "nd,caf,te"
6060
ini_options.testpaths = [ "tests" ]
6161

6262
[tool.bumpversion]
63-
current_version = "0.4.0"
63+
current_version = "0.5.0"
6464
commit = true
6565
tag = true
6666
tag_name = "v{new_version}"

src/check_unicode/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Pre-commit hook to detect and fix non-ASCII Unicode characters."""
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)