Skip to content

Commit 626c4be

Browse files
committed
chore: Release
1 parent c6b458d commit 626c4be

File tree

8 files changed

+16
-13
lines changed

8 files changed

+16
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77
<!-- next-header -->
88
## [Unreleased] - ReleaseDate
99

10+
## [1.39.2] - 2025-11-13
11+
1012
### Fixes
1113

1214
- Don't offer `entry` as a correction for `entrys`
@@ -1659,7 +1661,8 @@ Note: MSRV is now 1.54
16591661
* Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c))
16601662

16611663
<!-- next-url -->
1662-
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.39.1...HEAD
1664+
[Unreleased]: https://github.com/crate-ci/typos/compare/v1.39.2...HEAD
1665+
[1.39.2]: https://github.com/crate-ci/typos/compare/v1.39.1...v1.39.2
16631666
[1.39.1]: https://github.com/crate-ci/typos/compare/v1.39.0...v1.39.1
16641667
[1.39.0]: https://github.com/crate-ci/typos/compare/v1.38.1...v1.39.0
16651668
[1.38.1]: https://github.com/crate-ci/typos/compare/v1.38.0...v1.38.1

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

action/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [[ -z $(ls ${TARGET} 2>/dev/null) ]]; then
2020
fi
2121

2222
if [[ ! -x ${COMMAND} ]]; then
23-
VERSION=1.39.1
23+
VERSION=1.39.2
2424
if [[ "$(uname -m)" == "arm64" || "$(uname -m)" == "aarch64" ]]; then
2525
ARCH="aarch64"
2626
else

crates/typos-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typos-cli"
3-
version = "1.39.1"
3+
version = "1.39.2"
44
description = "Source Code Spelling Correction"
55
readme = "../../README.md"
66
categories = ["development-tools", "text-processing"]

crates/typos-dict/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "typos-dict"
3-
version = "0.13.10"
3+
version = "0.13.11"
44
description = "Source Code Spelling Correction"
55
readme = "../../README.md"
66
categories = ["development-tools", "text-processing"]

docs/github-action.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Checkout Actions Repository
2323
uses: actions/checkout@v4
2424
- name: Spell Check Repo
25-
uses: crate-ci/typos@v1.39.1
25+
uses: crate-ci/typos@v1.39.2
2626
```
2727
2828
**Requirements:** The runner must have `wget` installed
@@ -62,24 +62,24 @@ jobs:
6262
uses: actions/checkout@v4
6363
6464
- name: Check spelling of file.txt
65-
uses: crate-ci/typos@v1.39.1
65+
uses: crate-ci/typos@v1.39.2
6666
with:
6767
files: ./file.txt
6868
6969
- name: Use custom config file
70-
uses: crate-ci/typos@v1.39.1
70+
uses: crate-ci/typos@v1.39.2
7171
with:
7272
files: ./file.txt
7373
config: ./myconfig.toml
7474
7575
- name: Ignore implicit configuration file
76-
uses: crate-ci/typos@v1.39.1
76+
uses: crate-ci/typos@v1.39.2
7777
with:
7878
files: ./file.txt
7979
isolated: true
8080
8181
- name: Writes changes in the local checkout
82-
uses: crate-ci/typos@v1.39.1
82+
uses: crate-ci/typos@v1.39.2
8383
with:
8484
write_changes: true
8585
```

docs/pre-commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ config at this repository:
66
```yaml
77
repos:
88
- repo: https://github.com/crate-ci/typos
9-
rev: v1.39.1
9+
rev: v1.39.2
1010
hooks:
1111
- id: typos
1212
```

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44

55

6-
TYPOS_VERSION = '1.39.1'
6+
TYPOS_VERSION = '1.39.2'
77

88

99
setup(

0 commit comments

Comments
 (0)