diff --git a/CHANGELOG.md b/CHANGELOG.md index a7fbdd9..7f9b5a6 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.2] - 2022-12-02 + ## [1.13.1] - 2022-11-30 ### Fixes @@ -541,7 +543,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.1...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.13.2...HEAD +[1.13.2]: https://github.com/crate-ci/typos/compare/v1.13.1...v1.13.2 [1.13.1]: https://github.com/crate-ci/typos/compare/v1.13.0...v1.13.1 [1.13.0]: https://github.com/crate-ci/typos/compare/v1.12.14...v1.13.0 [1.12.14]: https://github.com/crate-ci/typos/compare/v1.12.13...v1.12.14 diff --git a/Cargo.lock b/Cargo.lock index 0991421..d42c667 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1619,7 +1619,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.13.1" +version = "1.13.2" dependencies = [ "ahash", "anyhow", @@ -1665,7 +1665,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.9.11" +version = "0.9.12" dependencies = [ "codegenrs", "csv", @@ -1679,7 +1679,7 @@ dependencies = [ [[package]] name = "typos-vars" -version = "0.8.7" +version = "0.8.8" dependencies = [ "codegenrs", "dictgen", @@ -1776,7 +1776,7 @@ dependencies = [ [[package]] name = "varcon" -version = "0.6.6" +version = "0.6.7" dependencies = [ "codegenrs", "snapbox", diff --git a/Cargo.toml b/Cargo.toml index 16dd434..d79fa62 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ [package] name = "typos-cli" -version = "1.13.1" +version = "1.13.2" 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 cf8ca3c..b04f586 100644 --- a/crates/typos-dict/Cargo.toml +++ b/crates/typos-dict/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.9.11" +version = "0.9.12" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/crates/typos-vars/Cargo.toml b/crates/typos-vars/Cargo.toml index 47e6159..6a6a3c5 100644 --- a/crates/typos-vars/Cargo.toml +++ b/crates/typos-vars/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-vars" -version = "0.8.7" +version = "0.8.8" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/crates/varcon/Cargo.toml b/crates/varcon/Cargo.toml index c2ed464..8dafc8d 100644 --- a/crates/varcon/Cargo.toml +++ b/crates/varcon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "varcon" -version = "0.6.6" +version = "0.6.7" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/docker/Dockerfile b/docker/Dockerfile index f9a9be3..4e45f9a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:22.04 -ARG VERSION=1.13.1 +ARG VERSION=1.13.2 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 f3a94bd..562e683 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.1 + rev: v1.13.2 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 4c4438e..acb6dfd 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.13.1' +TYPOS_VERSION = '1.13.2' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',