From 49a200473c5570f197c170bcbc55fae50f2fe07c Mon Sep 17 00:00:00 2001 From: Jo <10510431+j178@users.noreply.github.com> Date: Sat, 2 Aug 2025 11:18:00 +0800 Subject: [PATCH] Bump to 0.0.15 (#301) --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 14 +++++++------- Cargo.toml | 2 +- README.md | 4 ++-- pyproject.toml | 2 +- 5 files changed, 26 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64388f1a..b6c97388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.0.15 + +In this release, `language: node` hooks are fully supported now (finally)!. +Give it a try and let us know if you run into any issues! + +### Enhancements + +- Support `nodejs` language hook ([#298](https://github.com/j178/prefligit/pull/298)) +- Show unimplemented message earlier ([#296](https://github.com/j178/prefligit/pull/296)) +- Simplify npm installing dependencies ([#299](https://github.com/j178/prefligit/pull/299)) + +### Documentation + +- Update readme ([#300](https://github.com/j178/prefligit/pull/300)) + ## 0.0.14 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 899c0906..f92aa2aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -347,9 +347,9 @@ dependencies = [ [[package]] name = "cc" -version = "1.2.30" +version = "1.2.31" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "deec109607ca693028562ed836a5f1c4b8bd77755c4e132fc5ce11b0b6211ae7" +checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2" dependencies = [ "jobserver", "libc", @@ -614,9 +614,9 @@ dependencies = [ [[package]] name = "fancy-regex" -version = "0.16.0" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "921052e27ea019b147827df99754826a4d5f7385e0743b8d43b9464d980040f0" +checksum = "bf04c5ec15464ace8355a7b440a33aece288993475556d461154d7a62ad9947c" dependencies = [ "bit-set", "regex-automata 0.4.9", @@ -1675,7 +1675,7 @@ dependencies = [ [[package]] name = "prefligit" -version = "0.0.14" +version = "0.0.15" dependencies = [ "anstream", "anyhow", @@ -2447,9 +2447,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.47.0" +version = "1.47.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43864ed400b6043a4757a25c7a64a8efde741aed79a056a2fb348a406701bb35" +checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038" dependencies = [ "backtrace", "bytes", diff --git a/Cargo.toml b/Cargo.toml index 6d35df03..64186ae2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ tracing = "0.1.40" [package] name = "prefligit" -version = "0.0.14" +version = "0.0.15" authors = ["j178 "] description = "pre-commit implemented in Rust" repository = "https://github.com/j178/prefligit" diff --git a/README.md b/README.md index cc23d3a0..1b0234bc 100644 --- a/README.md +++ b/README.md @@ -48,10 +48,10 @@ cargo clippy.............................................................Passed ```console # On Linux and macOS -curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prefligit/releases/download/v0.0.14/prefligit-installer.sh | sh +curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prefligit/releases/download/v0.0.15/prefligit-installer.sh | sh # On Windows -powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prefligit/releases/download/v0.0.14/prefligit-installer.ps1 | iex" +powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prefligit/releases/download/v0.0.15/prefligit-installer.ps1 | iex" ``` diff --git a/pyproject.toml b/pyproject.toml index 75ef34ca..3f930146 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "prefligit" -version = "0.0.14" +version = "0.0.15" description = "pre-commit reimplemented in Rust" authors = [{ name = "j178", email = "hi@j178.dev" }] requires-python = ">=3.8"