diff --git a/CHANGELOG.md b/CHANGELOG.md index 2a1b812..47d64ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.11.1] - 2022-08-16 + ### Fixes - Don't correct `thead` tag @@ -413,7 +415,8 @@ Note: MSRV is now 1.54 * Only do hex check if digits are in identifiers ([68cd36d0](https://github.com/crate-ci/typos/commit/68cd36d0de90226dbc9d31c2ce6d8bf6b69adb5c)) -[Unreleased]: https://github.com/crate-ci/typos/compare/v1.11.0...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.11.1...HEAD +[1.11.1]: https://github.com/crate-ci/typos/compare/v1.11.0...v1.11.1 [1.11.0]: https://github.com/crate-ci/typos/compare/v1.10.3...v1.11.0 [1.10.3]: https://github.com/crate-ci/typos/compare/v1.10.2...v1.10.3 [1.10.2]: https://github.com/crate-ci/typos/compare/v1.10.1...v1.10.2 diff --git a/Cargo.lock b/Cargo.lock index e8f5e78..66ddc5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1506,7 +1506,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.11.0" +version = "1.11.1" dependencies = [ "ahash", "anyhow", @@ -1552,7 +1552,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.8.5" +version = "0.8.6" dependencies = [ "codegenrs", "csv", diff --git a/Cargo.toml b/Cargo.toml index e206dd2..7bafa8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "typos-cli" -version = "1.11.0" +version = "1.11.1" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/crates/typos-dict/Cargo.toml b/crates/typos-dict/Cargo.toml index 12f4348..03e8a79 100644 --- a/crates/typos-dict/Cargo.toml +++ b/crates/typos-dict/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.8.5" +version = "0.8.6" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index aac781a..4dd077b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.11.0 +ARG VERSION=1.11.1 ENV VERSION=${VERSION} RUN apt-get update && apt-get install -y wget git jq RUN wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz && \ diff --git a/docs/pre-commit.md b/docs/pre-commit.md index 12f2819..ab274cd 100644 --- a/docs/pre-commit.md +++ b/docs/pre-commit.md @@ -6,7 +6,7 @@ config at this repository: ```yaml repos: - repo: https://github.com/crate-ci/typos - rev: v1.11.0 + rev: v1.11.1 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 79e3eb1..56f83e0 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from typing import Tuple from setuptools import setup from setuptools.command.install import install as orig_install -TYPOS_VERSION = '1.11.0' +TYPOS_VERSION = '1.11.1' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',