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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ body:

- type: input
attributes:
label: "Version (current: 0.4.9)"
label: "Version (current: 0.4.10)"
description: What version of prek are you using? (see `prek -V`)
placeholder: e.g., prek 0.2.3 (7fe75a86d 2025-09-29)
validations:
Expand Down
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# Changelog

## 0.4.10

Released on 2026-07-16.

### Enhancements

- Add PHP language support ([#2314](https://github.com/j178/prek/pull/2314))
- Add freeze option to update settings ([#2323](https://github.com/j178/prek/pull/2323))
- Add tag filters to update configuration ([#2354](https://github.com/j178/prek/pull/2354))
- Identify 'mts' and 'cts' as TypeScript files ([#2209](https://github.com/j178/prek/pull/2209))
- Publish Alpine Docker images ([#2352](https://github.com/j178/prek/pull/2352))
- Support builtin and meta in try-repo ([#2350](https://github.com/j178/prek/pull/2350))

### Bug fixes

- Fix Python discovery order ([#2348](https://github.com/j178/prek/pull/2348))
- Fix Windows progress rendering ([#2328](https://github.com/j178/prek/pull/2328))
- Preserve configured repo values for updates ([#2324](https://github.com/j178/prek/pull/2324))
- Scope synthetic `GIT_WORK_TREE` to git commands ([#2356](https://github.com/j178/prek/pull/2356))

### Documentation

- Expand common workflows guide ([#2351](https://github.com/j178/prek/pull/2351))

### Contributors

- @j178

## 0.4.9

Released on 2026-07-11.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

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

[workspace.package]
version = "0.4.9"
version = "0.4.10"
edition = "2024"
rust-version = "1.95"
repository = "https://github.com/j178/prek"
homepage = "https://prek.j178.dev/"
license = "MIT"

[workspace.dependencies]
prek-consts = { path = "crates/prek-consts", version = "0.4.9" }
prek-identify = { path = "crates/prek-identify", version = "0.4.9" }
prek-pty = { path = "crates/prek-pty", version = "0.4.9" }
prek-consts = { path = "crates/prek-consts", version = "0.4.10" }
prek-identify = { path = "crates/prek-identify", version = "0.4.10" }
prek-pty = { path = "crates/prek-pty", version = "0.4.10" }

aho-corasick = { version = "1.1.4" }
annotate-snippets = { version = "0.12.13" }
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ On Linux and macOS:
<!-- --8<-- [start: linux-standalone-install] -->

```bash
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.sh | sh
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.4.10/prek-installer.sh | sh
```

<!-- --8<-- [end: linux-standalone-install] -->
Expand All @@ -68,7 +68,7 @@ On Windows:
<!-- --8<-- [start: windows-standalone-install] -->

```powershell
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.4.9/prek-installer.ps1 | iex"
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.4.10/prek-installer.ps1 | iex"
```

<!-- --8<-- [end: windows-standalone-install] -->
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "prek"
version = "0.4.9"
version = "0.4.10"
description = "A fast Git hook manager written in Rust, designed as a drop-in alternative to pre-commit, reimagined."
authors = [{ name = "j178", email = "[email protected]" }]
requires-python = ">=3.8"
Expand Down
Loading
Loading