Commit 8951ef9 1 parent 1594c08 commit 8951ef9 Copy full SHA for 8951ef9
File tree 7 files changed +14
-11
lines changed
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.30.0] - 2025-03-01
11
+
10
12
### Features
11
13
12
14
- Updated the dictionary with the [ February 2025] ( https://github.com/crate-ci/typos/issues/1221 ) changes
@@ -1439,7 +1441,8 @@ Note: MSRV is now 1.54
1439
1441
* Only do hex check if digits are in identifiers ([ 68cd36d0] ( https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c ) )
1440
1442
1441
1443
<!-- next-url -->
1442
- [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.29.10...HEAD
1444
+ [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.30.0...HEAD
1445
+ [ 1.30.0 ] : https://github.com/crate-ci/typos/compare/v1.29.10...v1.30.0
1443
1446
[ 1.29.10 ] : https://github.com/crate-ci/typos/compare/v1.29.9...v1.29.10
1444
1447
[ 1.29.9 ] : https://github.com/crate-ci/typos/compare/v1.29.8...v1.29.9
1445
1448
[ 1.29.8 ] : https://github.com/crate-ci/typos/compare/v1.29.7...v1.29.8
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [[ -z $(ls ${TARGET} 2>/dev/null) ]]; then
20
20
fi
21
21
22
22
if [[ ! -x ${COMMAND} ]]; then
23
- VERSION=1.29.10
23
+ VERSION=1.30.0
24
24
if [[ " $( uname -m) " == " arm64" || " $( uname -m) " == " aarch64" ]]; then
25
25
ARCH=" aarch64"
26
26
else
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " typos-cli"
3
- version = " 1.29.10 "
3
+ version = " 1.30.0 "
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.10
25
+ uses : crate-ci/typos@v1.30.0
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.10
64
+ uses: crate-ci/typos@v1.30.0
65
65
with:
66
66
files: ./file.txt
67
67
68
68
- name: Use custom config file
69
- uses: crate-ci/typos@v1.29.10
69
+ uses: crate-ci/typos@v1.30.0
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.10
75
+ uses: crate-ci/typos@v1.30.0
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.10
81
+ uses: crate-ci/typos@v1.30.0
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.10
9
+ rev : v1.30.0
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.10 '
6
+ TYPOS_VERSION = '1.30.0 '
7
7
8
8
9
9
setup (
You can’t perform that action at this time.
0 commit comments