1
0
mirror of https://github.com/j178/prek.git synced 2026-04-25 02:11:36 +02:00

Bump to 0.0.15 (#301)

This commit is contained in:
Jo
2025-08-02 11:18:00 +08:00
committed by GitHub
parent 3dbd62eb65
commit 49a200473c
5 changed files with 26 additions and 11 deletions
+15
View File
@@ -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
Generated
+7 -7
View File
@@ -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",
+1 -1
View File
@@ -11,7 +11,7 @@ tracing = "0.1.40"
[package]
name = "prefligit"
version = "0.0.14"
version = "0.0.15"
authors = ["j178 <hi@j178.dev>"]
description = "pre-commit implemented in Rust"
repository = "https://github.com/j178/prefligit"
+2 -2
View File
@@ -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"
```
</details>
+1 -1
View File
@@ -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"