From f7fd7c0e42ea5291bf07094d49ce76808c463753 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Fri, 21 Jan 2022 10:39:27 -0600 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 4 ++-- Cargo.toml | 2 +- Dockerfile | 2 +- crates/typos-dict/Cargo.toml | 2 +- docker/Dockerfile | 2 +- docs/pre-commit.md | 2 +- setup.py | 2 +- 8 files changed, 12 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c56ef5668..5148d80ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] - ReleaseDate +## [1.3.5] - 2022-01-21 + ## [1.3.4] - 2022-01-12 ## [1.3.3] - 2021-12-18 @@ -271,7 +273,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.3.4...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.3.5...HEAD +[1.3.5]: https://github.com/crate-ci/typos/compare/v1.3.4...v1.3.5 [1.3.4]: https://github.com/crate-ci/typos/compare/v1.3.3...v1.3.4 [1.3.3]: https://github.com/crate-ci/typos/compare/v1.3.2...v1.3.3 [1.3.2]: https://github.com/crate-ci/typos/compare/v1.3.1...v1.3.2 diff --git a/Cargo.lock b/Cargo.lock index 4b9f61369..a8ca2c86d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1525,7 +1525,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.3.4" +version = "1.3.5" dependencies = [ "ahash", "anyhow", @@ -1567,7 +1567,7 @@ dependencies = [ [[package]] name = "typos-dict" -version = "0.7.1" +version = "0.7.2" dependencies = [ "dictgen", "log", diff --git a/Cargo.toml b/Cargo.toml index 48bf4ed04..4028334eb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] name = "typos-cli" -version = "1.3.4" +version = "1.3.5" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/Dockerfile b/Dockerfile index 71b93e493..b4f8f6129 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.4 +ARG VERSION=1.3.5 ENV VERSION=${VERSION} RUN apt-get update && apt-get install -y wget 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/crates/typos-dict/Cargo.toml b/crates/typos-dict/Cargo.toml index 726940600..3d33189cd 100644 --- a/crates/typos-dict/Cargo.toml +++ b/crates/typos-dict/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos-dict" -version = "0.7.1" +version = "0.7.2" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index af0f3e4f1..edfec32ff 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.4 +ARG VERSION=1.3.5 ENV VERSION=${VERSION} RUN apt-get update && apt-get install -y wget 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 163a8b4db..6160327f3 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.3.4 + rev: v1.3.5 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 33f5e3785..9a152c621 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ from setuptools import setup from setuptools.command.install import install as orig_install -TYPOS_VERSION = '1.3.4' +TYPOS_VERSION = '1.3.5' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',