From 5414608bf6b00e79ff55509b99595953f0bdddae Mon Sep 17 00:00:00 2001 From: Ed Page Date: Tue, 7 Mar 2023 03:18:52 -0600 Subject: [PATCH] chore: Release --- CHANGELOG.md | 5 ++++- Cargo.lock | 2 +- Cargo.toml | 2 +- docker/Dockerfile | 2 +- docs/pre-commit.md | 2 +- setup.py | 2 +- 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c00258..9ca0dba 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.19] - 2023-03-07 + ### Features Publish to PyPI (first attempt) @@ -636,7 +638,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.18...HEAD +[Unreleased]: https://github.com/crate-ci/typos/compare/v1.13.19...HEAD +[1.13.19]: https://github.com/crate-ci/typos/compare/v1.13.18...v1.13.19 [1.13.18]: https://github.com/crate-ci/typos/compare/v1.13.17...v1.13.18 [1.13.17]: https://github.com/crate-ci/typos/compare/v1.13.16...v1.13.17 [1.13.16]: https://github.com/crate-ci/typos/compare/v1.13.15...v1.13.16 diff --git a/Cargo.lock b/Cargo.lock index 5f2f2d7..d438305 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1578,7 +1578,7 @@ dependencies = [ [[package]] name = "typos-cli" -version = "1.13.18" +version = "1.13.19" dependencies = [ "ahash", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 2d6b65f..0039d0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,7 +21,7 @@ include = [ [package] name = "typos-cli" -version = "1.13.18" +version = "1.13.19" description = "Source Code Spelling Correction" readme = "README.md" categories = ["development-tools", "text-processing"] diff --git a/docker/Dockerfile b/docker/Dockerfile index 20bab41..8ece828 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,5 +1,5 @@ FROM ubuntu:22.04 -ARG VERSION=1.13.18 +ARG VERSION=1.13.19 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 a67ba5a..179f60f 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.18 + rev: v1.13.19 hooks: - id: typos ``` diff --git a/setup.py b/setup.py index bfe4aaf..5ed0d18 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.18' +TYPOS_VERSION = '1.13.19' POSTFIX_SHA256 = { 'linux': ( 'x86_64-unknown-linux-musl.tar.gz',