From 476f693d2e962e42f18d896a3c3b48fc623b0be3 Mon Sep 17 00:00:00 2001 From: j178 <10510431+j178@users.noreply.github.com> Date: Thu, 21 Nov 2024 22:58:39 +0800 Subject: [PATCH] Bump version to v0.0.5 --- CHANGELOG.md | 13 +++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 4 ++-- pyproject.toml | 2 +- 5 files changed, 18 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc2a235..c7bd245 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.0.5 + +### Enhancements + +v0.0.4 release process was broken, so this release is a actually a re-release of v0.0.4. + +- Improve subprocess trace and error output ([#92](https://github.com/j178/pre-commit-rs/pull/92)) +- Stash working tree before running hooks ([#96](https://github.com/j178/pre-commit-rs/pull/96)) +- Add color to command trace ([#94](https://github.com/j178/pre-commit-rs/pull/94)) +- Improve hook output display ([#79](https://github.com/j178/pre-commit-rs/pull/79)) +- Improve uv installation ([#78](https://github.com/j178/pre-commit-rs/pull/78)) +- Support docker language ([#67](https://github.com/j178/pre-commit-rs/pull/67)) + ## 0.0.4 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 11ffe4e..e13dd9a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1511,7 +1511,7 @@ dependencies = [ [[package]] name = "pre-commit-rs" -version = "0.0.4" +version = "0.0.5" dependencies = [ "anstream", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 5bce819..10d198e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pre-commit-rs" -version = "0.0.4" +version = "0.0.5" authors = ["j178 "] description = "pre-commit implemeneted in Rust" repository = "https://github.com/j178/pre-commit-rs" diff --git a/README.md b/README.md index f15a742..e8a1599 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,10 @@ It aims to be a drop-in replacement for the original tool while also providing s ```console # On Linux and macOS -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/pre-commit-rs/releases/download/v0.0.4/pre-commit-rs-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/pre-commit-rs/releases/download/v0.0.5/pre-commit-rs-installer.sh | sh # On Windows -powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/pre-commit-rs/releases/download/v0.0.4/pre-commit-rs-installer.ps1 | iex" +powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/pre-commit-rs/releases/download/v0.0.5/pre-commit-rs-installer.ps1 | iex" ``` ### PyPI diff --git a/pyproject.toml b/pyproject.toml index b1b5d88..b867abe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "pre-commit-rusty" -version = "0.0.4" +version = "0.0.5" description = "pre-commit reimplemented in Rust" authors = [{ name = "j178", email = "hi@j178.dev" }] requires-python = ">=3.8"