From 63a50f6f8b08ebc323a4936999cc443da3991a2a Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Wed, 27 Mar 2024 12:19:05 -0500 Subject: [PATCH] Bump version for release --- README.md | 11 +++++++---- setup.cfg | 2 +- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 26190a7..af5b1b6 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ To use with `pre-commit`, include this repo and the desired hooks in ```yaml - repo: https://github.com/sirosen/texthooks - rev: 0.6.4 + rev: 0.6.5 hooks: - id: alphabetize-codeowners - id: fix-smartquotes @@ -98,7 +98,7 @@ as follows: ```yaml - repo: https://github.com/sirosen/texthooks - rev: 0.6.4 + rev: 0.6.5 hooks: - id: fix-smartquotes # replace default single quote chars with this set: @@ -127,7 +127,7 @@ You could override the space codepoints as follows: ```yaml - repo: https://github.com/sirosen/texthooks - rev: 0.6.4 + rev: 0.6.5 hooks: - id: fix-spaces args: ["--separator-codepoints", "2009"] @@ -165,7 +165,7 @@ following sample config: ```yaml - repo: https://github.com/sirosen/texthooks - rev: 0.6.4 + rev: 0.6.5 hooks: - id: macro-expand args: @@ -179,6 +179,9 @@ following sample config: ### Unreleased + +### 0.6.5 + - `alphabetize-codeowners` is now case insensitive and normalizes whitespace better. Thanks @kurtmckee for the PR! diff --git a/setup.cfg b/setup.cfg index 5eb590b..85a0169 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = texthooks -version = 0.6.4 +version = 0.6.5 description = pre-commit fixers and linters for handling text files long_description = file: README.md long_description_content_type = text/markdown