From 57502b53ccec6208e1301b8233866f5a7cddb044 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 16 Mar 2023 03:47:08 -0500 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 4 ++-- action/entrypoint.sh | 2 +- crates/typos-cli/Cargo.toml | 2 +- crates/typos-dict/Cargo.toml | 2 +- docs/pre-commit.md | 2 +- setup.py | 2 +- 7 files changed, 11 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a37e4462f..40d2acdd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.13.25] - 2023-03-16 + ### Fixes - Don't correct `commitish` @@ -677,7 +679,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.13.24...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.13.25...HEAD +[1.13.25]: https://github.com/crate-ci/typos/compare/v1.13.24...v1.13.25 [1.13.24]: https://github.com/crate-ci/typos/compare/v1.13.23...v1.13.24 [1.13.23]: https://github.com/crate-ci/typos/compare/v1.13.22...v1.13.23 [1.13.22]: https://github.com/crate-ci/typos/compare/v1.13.21...v1.13.22 diff --git a/Cargo.lock b/Cargo.lock index b30bbba7e..4a8843e33 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1645,7 +1645,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.13.24" +version = "1.13.25" dependencies = [ "ahash", "anstyle", @@ -1692,7 +1692,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.9.23" +version = "0.9.24" dependencies = [ "codegenrs", "csv", diff --git a/action/entrypoint.sh b/action/entrypoint.sh index f07cf3a90..01fe7e657 100755 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -30,7 +30,7 @@ if [[ -z $(ls ${TARGET} 2>/dev/null) ]]; then exit 1 fi if [[ -z $(which ${CMD_NAME} 2>/dev/null) ]]; then - VERSION=1.13.24 + VERSION=1.13.25 log "Downloading 'typos' v${VERSION}" wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz sudo tar -xzvf typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz -C /usr/local/bin ./typos diff --git a/crates/typos-cli/Cargo.toml b/crates/typos-cli/Cargo.toml index ea3d127bd..c1e416860 100644 --- a/crates/typos-cli/Cargo.toml +++ b/crates/typos-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-cli" -version = "1.13.24" +version = "1.13.25" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/crates/typos-dict/Cargo.toml b/crates/typos-dict/Cargo.toml index f5c1a49bd..14cd3a242 100644 --- a/crates/typos-dict/Cargo.toml +++ b/crates/typos-dict/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.9.23" +version = "0.9.24" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/docs/pre-commit.md b/docs/pre-commit.md index 0e4c24bda..3d2dd197a 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.13.24 + rev: v1.13.25 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index dd7baa503..86608ed49 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup -TYPOS_VERSION = '1.13.24' +TYPOS_VERSION = '1.13.25' setup(