From 71b53cb23ea90eed7bdd0cbcd6645fc0fb883fa7 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Sat, 18 Dec 2021 17:52:11 -0600 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 4 ++-- Cargo.toml | 2 +- Dockerfile | 2 +- crates/typos/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 70614e8..90bbcd7 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.3] - 2021-12-18 + #### Fixes - Hopefully fix pre-commit hook on cygwin @@ -267,7 +269,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.2...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.3.3...HEAD +[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 [1.3.1]: https://github.com/crate-ci/typos/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/crate-ci/typos/compare/v1.2.1...v1.3.0 diff --git a/Cargo.lock b/Cargo.lock index 0cfa24a..fedb034 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1430,7 +1430,7 @@ checksum = "0685c84d5d54d1c26f7d3eb96cd41550adb97baed141a761cf335d3d33bcd0ae" [[package]] name = "typos" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "bstr", @@ -1447,7 +1447,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.3.2" +version = "1.3.3" dependencies = [ "ahash", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 56e8b88..771afb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] name = "typos-cli" -version = "1.3.2" +version = "1.3.3" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/Dockerfile b/Dockerfile index 9ec1266..1f269be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.2 +ARG VERSION=1.3.3 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/Cargo.toml b/crates/typos/Cargo.toml index 47cbeb9..20303e5 100644 --- a/crates/typos/Cargo.toml +++ b/crates/typos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos" -version = "0.8.1" +version = "0.8.2" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index cbca1e9..efdaff9 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.2 +ARG VERSION=1.3.3 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 0b2193d..7d29c21 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.2 + rev: v1.3.3 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index ccf5109..80a099a 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.3.2' +TYPOS_VERSION = '1.3.3' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',