File tree Expand file tree Collapse file tree 7 files changed +11
-8
lines changed Expand file tree Collapse file tree 7 files changed +11
-8
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.12.11] - 2022-10-20
11
+
10
12
### Fixes
11
13
12
14
- Correct ` wrappning `
@@ -512,7 +514,8 @@ Note: MSRV is now 1.54
512
514
* Only do hex check if digits are in identifiers ([ 68cd36d0] ( https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c ) )
513
515
514
516
<!-- next-url -->
515
- [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.12.10...HEAD
517
+ [ Unreleased ] : https://github.com/crate-ci/typos/compare/v1.12.11...HEAD
518
+ [ 1.12.11 ] : https://github.com/crate-ci/typos/compare/v1.12.10...v1.12.11
516
519
[ 1.12.10 ] : https://github.com/crate-ci/typos/compare/v1.12.9...v1.12.10
517
520
[ 1.12.9 ] : https://github.com/crate-ci/typos/compare/v1.12.8...v1.12.9
518
521
[ 1.12.8 ] : https://github.com/crate-ci/typos/compare/v1.12.7...v1.12.8
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ members = [
5
5
6
6
[package ]
7
7
name = " typos-cli"
8
- version = " 1.12.10 "
8
+ version = " 1.12.11 "
9
9
description = " Source Code Spelling Correction"
10
10
authors = [" Ed Page <eopage@gmail.com>" ]
11
11
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " typos-dict"
3
- version = " 0.9.7 "
3
+ version = " 0.9.8 "
4
4
description = " Source Code Spelling Correction"
5
5
authors = [" Ed Page <eopage@gmail.com>" ]
6
6
license = " MIT OR Apache-2.0"
Original file line number Diff line number Diff line change 1
1
FROM ubuntu:20.04
2
- ARG VERSION=1.12.10
2
+ ARG VERSION=1.12.11
3
3
ENV VERSION=${VERSION}
4
4
RUN apt-get update && apt-get install -y wget git jq
5
5
RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \
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.12.10
9
+ rev : v1.12.11
10
10
hooks :
11
11
- id : typos
12
12
` ` `
Original file line number Diff line number Diff line change 15
15
from setuptools import setup
16
16
from setuptools .command .install import install as orig_install
17
17
18
- TYPOS_VERSION = '1.12.10 '
18
+ TYPOS_VERSION = '1.12.11 '
19
19
POSTFIX_SHA256 = {
20
20
'linux' : (
21
21
'x86_64-unknown-linux-musl.tar.gz' ,
You can’t perform that action at this time.
0 commit comments