diff --git a/CHANGELOG.md b/CHANGELOG.md index a595dfd..0683eae 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.15] - 2023-02-28 + ### Internal - Dependency updates @@ -616,7 +618,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.14...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.13.15...HEAD +[1.13.15]: https://github.com/crate-ci/typos/compare/v1.13.14...v1.13.15 [1.13.14]: https://github.com/crate-ci/typos/compare/v1.13.13...v1.13.14 [1.13.13]: https://github.com/crate-ci/typos/compare/v1.13.12...v1.13.13 [1.13.12]: https://github.com/crate-ci/typos/compare/v1.13.11...v1.13.12 diff --git a/Cargo.lock b/Cargo.lock index 8542b29..420c0e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1562,7 +1562,7 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a" [[package]] name = "typos" -version = "0.10.8" +version = "0.10.9" dependencies = [ "anyhow", "bstr", @@ -1578,7 +1578,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.13.14" +version = "1.13.15" dependencies = [ "ahash", "anyhow", @@ -1624,7 +1624,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.9.19" +version = "0.9.20" dependencies = [ "codegenrs", "csv", @@ -1638,7 +1638,7 @@ dependencies = [ [[package]] name = "typos-vars" -version = "0.8.8" +version = "0.8.9" dependencies = [ "codegenrs", "dictgen", @@ -1735,7 +1735,7 @@ dependencies = [ [[package]] name = "varcon" -version = "0.6.7" +version = "0.6.8" dependencies = [ "codegenrs", "snapbox", @@ -1744,7 +1744,7 @@ dependencies = [ [[package]] name = "varcon-core" -version = "2.2.8" +version = "2.2.9" dependencies = [ "enumflags2", "winnow", diff --git a/Cargo.toml b/Cargo.toml index af9b5b8..51ae729 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ [package] name = "typos-cli" -version = "1.13.14" +version = "1.13.15" description = "Source Code Spelling Correction" readme = "README.md" categories = ["development-tools", "text-processing"] @@ -60,7 +60,7 @@ doc = false [dependencies] typos = { version = "^0.10", path = "crates/typos" } -varcon-core = { version = "^2.2.8", path = "crates/varcon-core" } +varcon-core = { version = "^2.2.9", path = "crates/varcon-core" } typos-dict = { version = "^0.9", path = "crates/typos-dict", optional = true } typos-vars = { version = "^0.8", path = "crates/typos-vars", optional = true } unicase = "2.6" diff --git a/crates/typos-dict/Cargo.toml b/crates/typos-dict/Cargo.toml index 1e82df9..642271d 100644 --- a/crates/typos-dict/Cargo.toml +++ b/crates/typos-dict/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.9.19" +version = "0.9.20" 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 6e4ae18..233ab88 100644 --- a/crates/typos-vars/Cargo.toml +++ b/crates/typos-vars/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-vars" -version = "0.8.8" +version = "0.8.9" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/crates/typos/Cargo.toml b/crates/typos/Cargo.toml index 0618cf7..a4b0a88 100644 --- a/crates/typos/Cargo.toml +++ b/crates/typos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos" -version = "0.10.8" +version = "0.10.9" 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 7831ab5..ecde60c 100644 --- a/crates/varcon-core/Cargo.toml +++ b/crates/varcon-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "varcon-core" -version = "2.2.8" +version = "2.2.9" description = "Varcon-relevant data structures" readme = "../../README.md" categories = ["text-processing"] diff --git a/crates/varcon/Cargo.toml b/crates/varcon/Cargo.toml index 99527ed..142a1dd 100644 --- a/crates/varcon/Cargo.toml +++ b/crates/varcon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "varcon" -version = "0.6.7" +version = "0.6.8" description = "Source Code Spelling Correction" readme = "../../README.md" categories = ["development-tools", "text-processing"] diff --git a/docker/Dockerfile b/docker/Dockerfile index a5abd03..a28de3b 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:22.04 -ARG VERSION=1.13.14 +ARG VERSION=1.13.15 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 6c8c6c5..515ed54 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.14 + rev: v1.13.15 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 665a497..ae90dd7 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.14' +TYPOS_VERSION = '1.13.15' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',