Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## 0.2.21

Released on 2025-12-09.

### Bug fixes

- Fallback to use remote repo package root instead of erroring ([#1203](https://github.com/j178/prek/pull/1203))
- Prepend toolchain bin directory to PATH when calling cargo ([#1204](https://github.com/j178/prek/pull/1204))
- Use `cargo` from installed toolchain ([#1202](https://github.com/j178/prek/pull/1202))

### Contributors

- @j178

## 0.2.20

Released on 2025-12-08.
Expand All @@ -17,10 +31,8 @@ Want to show your project runs on prek? Add our README badge to your docs or rep
### Enhancements

- Support Rust language ([#989](https://github.com/j178/prek/pull/989))

- Refactor Rust toolchain management ([#1198](https://github.com/j178/prek/pull/1198))
- Add support for finding packages in virtual workspaces ([#1180](https://github.com/j178/prek/pull/1180))

- Add `prek cache size` command ([#1183](https://github.com/j178/prek/pull/1183))
- Support orphan projects ([#1129](https://github.com/j178/prek/pull/1129))
- Fallback to `manual` stage for hooks specified directly in command line ([#1185](https://github.com/j178/prek/pull/1185))
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
members = ["crates/*"]

[workspace.package]
version = "0.2.20"
version = "0.2.21"
edition = "2024"
repository = "https://github.com/j178/prek"
homepage = "https://prek.j178.dev/"
license = "MIT"

[workspace.dependencies]
prek-consts = { path = "crates/prek-consts", version = "0.2.20" }
prek-pty = { path = "crates/prek-pty", version = "0.2.20" }
prek-consts = { path = "crates/prek-consts", version = "0.2.21" }
prek-pty = { path = "crates/prek-pty", version = "0.2.21" }

rustix = { version = "1.0.8", features = ["pty", "process", "fs", "termios"] }
thiserror = { version = "2.0.11" }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ On Linux and macOS:

<!-- linux-standalone-install:start -->
```bash
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.2.20/prek-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.2.21/prek-installer.sh | sh
```
<!-- linux-standalone-install:end -->

On Windows:

<!-- windows-standalone-install:start -->
```powershell
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.2.20/prek-installer.ps1 | iex"
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.2.21/prek-installer.ps1 | iex"
```
<!-- windows-standalone-install:end -->

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "prek"
version = "0.2.20"
version = "0.2.21"
description = "Better `pre-commit`, re-engineered in Rust"
authors = [{ name = "j178", email = "[email protected]" }]
requires-python = ">=3.8"
Expand Down
Loading