From 11ca4583f2f3f74c7e7785c0ecb20fe2c99a4308 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 30 Jan 2025 16:03:12 -0600 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 6 +++--- action/entrypoint.sh | 2 +- crates/typos-cli/Cargo.toml | 4 ++-- crates/typos/Cargo.toml | 2 +- crates/varcon-core/Cargo.toml | 2 +- docs/github-action.md | 10 +++++----- docs/pre-commit.md | 2 +- setup.py | 2 +- 9 files changed, 19 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14128ea..bf56862 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.29.5] - 2025-01-30 + ### Internal - Update a dependency @@ -1403,7 +1405,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.29.4...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.29.5...HEAD +[1.29.5]: https://github.com/crate-ci/typos/compare/v1.29.4...v1.29.5 [1.29.4]: https://github.com/crate-ci/typos/compare/v1.29.3...v1.29.4 [1.29.3]: https://github.com/crate-ci/typos/compare/v1.29.2...v1.29.3 [1.29.2]: https://github.com/crate-ci/typos/compare/v1.29.1...v1.29.2 diff --git a/Cargo.lock b/Cargo.lock index 1914fdc..e581486 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1500,7 +1500,7 @@ dependencies = [ [[package]] name = "typos" -version = "0.10.33" +version = "0.10.34" dependencies = [ "bstr", "itertools 0.14.0", @@ -1513,7 +1513,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.29.4" +version = "1.29.5" dependencies = [ "ahash", "anstream", @@ -1698,7 +1698,7 @@ dependencies = [ [[package]] name = "varcon-core" -version = "5.0.1" +version = "5.0.2" dependencies = [ "enumflags2", "snapbox", diff --git a/action/entrypoint.sh b/action/entrypoint.sh index ec901b8..dfe22be 100755 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -21,7 +21,7 @@ fi if [[ ! -x ${COMMAND} ]]; then - VERSION=1.29.4 + VERSION=1.29.5 if [[ "$(uname -m)" == "arm64" ]]; then ARCH="aarch64" else diff --git a/crates/typos-cli/Cargo.toml b/crates/typos-cli/Cargo.toml index 1660c6b..227b011 100644 --- a/crates/typos-cli/Cargo.toml +++ b/crates/typos-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-cli" -version = "1.29.4" +version = "1.29.5" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] @@ -42,7 +42,7 @@ doc = false [dependencies] typos = { version = "^0.10", path = "../typos" } -varcon-core = { version = "^5.0.1", path = "../varcon-core" } +varcon-core = { version = "^5.0.2", path = "../varcon-core" } typos-dict = { version = "^0.12", path = "../typos-dict", optional = true } typos-vars = { version = "^0.9", path = "../typos-vars", optional = true } unicase = "2.8.1" diff --git a/crates/typos/Cargo.toml b/crates/typos/Cargo.toml index 7e8871c..44dde9c 100644 --- a/crates/typos/Cargo.toml +++ b/crates/typos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos" -version = "0.10.33" +version = "0.10.34" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/crates/varcon-core/Cargo.toml b/crates/varcon-core/Cargo.toml index edcfeb2..42e0352 100644 --- a/crates/varcon-core/Cargo.toml +++ b/crates/varcon-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "varcon-core" -version = "5.0.1" +version = "5.0.2" description = "Varcon-relevant data structures" readme = "../../README.md" categories = ["text-processing"] diff --git a/docs/github-action.md b/docs/github-action.md index ad1d5d9..e6ec2ac 100644 --- a/docs/github-action.md +++ b/docs/github-action.md @@ -22,7 +22,7 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v4 - name: Spell Check Repo - uses: crate-ci/typos@v1.29.4 + uses: crate-ci/typos@v1.29.5 ``` **Requirements:** The runner must have `wget` installed @@ -61,24 +61,24 @@ jobs: uses: actions/checkout@v4 - name: Check spelling of file.txt - uses: crate-ci/typos@v1.29.4 + uses: crate-ci/typos@v1.29.5 with: files: ./file.txt - name: Use custom config file - uses: crate-ci/typos@v1.29.4 + uses: crate-ci/typos@v1.29.5 with: files: ./file.txt config: ./myconfig.toml - name: Ignore implicit configuration file - uses: crate-ci/typos@v1.29.4 + uses: crate-ci/typos@v1.29.5 with: files: ./file.txt isolated: true - name: Writes changes in the local checkout - uses: crate-ci/typos@v1.29.4 + uses: crate-ci/typos@v1.29.5 with: write_changes: true ``` diff --git a/docs/pre-commit.md b/docs/pre-commit.md index c591f60..1b73ae1 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.29.4 + rev: v1.29.5 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 30b429d..12cf38a 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from __future__ import annotations from setuptools import setup -TYPOS_VERSION = '1.29.4' +TYPOS_VERSION = '1.29.5' setup(