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.33.0] - 2025-06-02
11
+
10
12
### Features
11
13
12
14
- Updated the dictionary with the [ May 2025] ( https://github.com/crate-ci/typos/issues/1290 ) changes
@@ -1493,7 +1495,8 @@ Note: MSRV is now 1.54
1493
1495
* Only do hex check if digits are in identifiers ([ 68cd36d0] ( https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c ) )
1494
1496
1495
1497
<!-- next-url -->
1496
- [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.32.0...HEAD
1498
+ [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.33.0...HEAD
1499
+ [ 1.33.0 ] : https://github.com/crate-ci/typos/compare/v1.32.0...v1.33.0
1497
1500
[ 1.32.0 ] : https://github.com/crate-ci/typos/compare/v1.31.2...v1.32.0
1498
1501
[ 1.31.2 ] : https://github.com/crate-ci/typos/compare/v1.31.1...v1.31.2
1499
1502
[ 1.31.1 ] : https://github.com/crate-ci/typos/compare/v1.31.0...v1.31.1
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.32 .0
23
+ VERSION=1.33 .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.32 .0"
3
+ version = " 1.33 .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.32 .0
25
+ uses : crate-ci/typos@v1.33 .0
26
26
` ` `
27
27
28
28
**Requirements:** The runner must have ` wget` installed
@@ -62,24 +62,24 @@ jobs:
62
62
uses: actions/checkout@v4
63
63
64
64
- name: Check spelling of file.txt
65
- uses: crate-ci/typos@v1.32 .0
65
+ uses: crate-ci/typos@v1.33 .0
66
66
with:
67
67
files: ./file.txt
68
68
69
69
- name: Use custom config file
70
- uses: crate-ci/typos@v1.32 .0
70
+ uses: crate-ci/typos@v1.33 .0
71
71
with:
72
72
files: ./file.txt
73
73
config: ./myconfig.toml
74
74
75
75
- name: Ignore implicit configuration file
76
- uses: crate-ci/typos@v1.32 .0
76
+ uses: crate-ci/typos@v1.33 .0
77
77
with:
78
78
files: ./file.txt
79
79
isolated: true
80
80
81
81
- name: Writes changes in the local checkout
82
- uses: crate-ci/typos@v1.32 .0
82
+ uses: crate-ci/typos@v1.33 .0
83
83
with:
84
84
write_changes: true
85
85
` ` `
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.32 .0
9
+ rev : v1.33 .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.32 .0'
6
+ TYPOS_VERSION = '1.33 .0'
7
7
8
8
9
9
setup (
You can’t perform that action at this time.
0 commit comments