File tree Expand file tree Collapse file tree 7 files changed +14
-11
lines changed Expand file tree Collapse file tree 7 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7
7
<!-- next-header -->
8
8
## [ Unreleased] - ReleaseDate
9
9
10
+ ## [ 1.29.6] - 2025-02-13
11
+
10
12
### Features
11
13
12
14
- Updated the dictionary with the [ January 2025] ( https://github.com/crate-ci/typos/issues/1200 ) changes
@@ -1409,7 +1411,8 @@ Note: MSRV is now 1.54
1409
1411
* Only do hex check if digits are in identifiers ([ 68cd36d0] ( https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c ) )
1410
1412
1411
1413
<!-- next-url -->
1412
- [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.29.5...HEAD
1414
+ [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.29.6...HEAD
1415
+ [ 1.29.6 ] : https://github.com/crate-ci/typos/compare/v1.29.5...v1.29.6
1413
1416
[ 1.29.5 ] : https://github.com/crate-ci/typos/compare/v1.29.4...v1.29.5
1414
1417
[ 1.29.4 ] : https://github.com/crate-ci/typos/compare/v1.29.3...v1.29.4
1415
1418
[ 1.29.3 ] : https://github.com/crate-ci/typos/compare/v1.29.2...v1.29.3
Original file line number Diff line number Diff line change 21
21
22
22
23
23
if [[ ! -x ${COMMAND} ]]; then
24
- VERSION=1.29.5
24
+ VERSION=1.29.6
25
25
if [[ " $( uname -m) " == " arm64" ]]; then
26
26
ARCH=" aarch64"
27
27
else
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " typos-cli"
3
- version = " 1.29.5 "
3
+ version = " 1.29.6 "
4
4
description = " Source Code Spelling Correction"
5
5
readme = " ../../README.md"
6
6
categories = [" development-tools" , " text-processing" ]
Original file line number Diff line number Diff line change 22
22
- name : Checkout Actions Repository
23
23
uses : actions/checkout@v4
24
24
- name : Spell Check Repo
25
- uses : crate-ci/typos@v1.29.5
25
+ uses : crate-ci/typos@v1.29.6
26
26
` ` `
27
27
28
28
**Requirements:** The runner must have ` wget` installed
@@ -61,24 +61,24 @@ jobs:
61
61
uses: actions/checkout@v4
62
62
63
63
- name: Check spelling of file.txt
64
- uses: crate-ci/typos@v1.29.5
64
+ uses: crate-ci/typos@v1.29.6
65
65
with:
66
66
files: ./file.txt
67
67
68
68
- name: Use custom config file
69
- uses: crate-ci/typos@v1.29.5
69
+ uses: crate-ci/typos@v1.29.6
70
70
with:
71
71
files: ./file.txt
72
72
config: ./myconfig.toml
73
73
74
74
- name: Ignore implicit configuration file
75
- uses: crate-ci/typos@v1.29.5
75
+ uses: crate-ci/typos@v1.29.6
76
76
with:
77
77
files: ./file.txt
78
78
isolated: true
79
79
80
80
- name: Writes changes in the local checkout
81
- uses: crate-ci/typos@v1.29.5
81
+ uses: crate-ci/typos@v1.29.6
82
82
with:
83
83
write_changes: true
84
84
` ` `
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ config at this repository:
6
6
``` yaml
7
7
repos :
8
8
- repo : https://github.com/crate-ci/typos
9
- rev : v1.29.5
9
+ rev : v1.29.6
10
10
hooks :
11
11
- id : typos
12
12
` ` `
Original file line number Diff line number Diff line change 3
3
from setuptools import setup
4
4
5
5
6
- TYPOS_VERSION = '1.29.5 '
6
+ TYPOS_VERSION = '1.29.6 '
7
7
8
8
9
9
setup (
You can’t perform that action at this time.
0 commit comments