From 5b7fe620ec14a4b4af513c0f462eb9dda63d64dd Mon Sep 17 00:00:00 2001 From: Ed Page Date: Wed, 26 Jan 2022 14:32:31 -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 9f7eeff..5347285 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.9] - 2022-01-26 + #### Fixes - Attempt to detect base64 values shorter than 90 characters @@ -295,7 +297,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.8...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.3.9...HEAD +[1.3.9]: https://github.com/crate-ci/typos/compare/v1.3.8...v1.3.9 [1.3.8]: https://github.com/crate-ci/typos/compare/v1.3.7...v1.3.8 [1.3.7]: https://github.com/crate-ci/typos/compare/v1.3.6...v1.3.7 [1.3.6]: https://github.com/crate-ci/typos/compare/v1.3.5...v1.3.6 diff --git a/Cargo.lock b/Cargo.lock index fb8ead6..594c1a0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1521,7 +1521,7 @@ checksum = "0685c84d5d54d1c26f7d3eb96cd41550adb97baed141a761cf335d3d33bcd0ae" [[package]] name = "typos" -version = "0.8.4" +version = "0.8.5" dependencies = [ "anyhow", "bstr", @@ -1538,7 +1538,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.3.8" +version = "1.3.9" dependencies = [ "ahash", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 351a294..b86e705 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ members = [ [package] name = "typos-cli" -version = "1.3.8" +version = "1.3.9" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/Dockerfile b/Dockerfile index 2f0e394..0b23222 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.8 +ARG VERSION=1.3.9 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 a4ccd50..a0d1323 100644 --- a/crates/typos/Cargo.toml +++ b/crates/typos/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "typos" -version = "0.8.4" +version = "0.8.5" description = "Source Code Spelling Correction" authors = ["Ed Page "] license = "MIT OR Apache-2.0" diff --git a/docker/Dockerfile b/docker/Dockerfile index 3d80bf3..f4d5e28 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:20.04 -ARG VERSION=1.3.8 +ARG VERSION=1.3.9 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 e06d9fd..74ef761 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.8 + rev: v1.3.9 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index 9ebfd5e..d2c3a75 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.8' +TYPOS_VERSION = '1.3.9' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',