Skip to content

Commit 46cb7ba

Browse files
authored
Bump version to 0.3.5 (#1760)
1 parent 3cd9382 commit 46cb7ba

6 files changed

Lines changed: 48 additions & 14 deletions

File tree

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Changelog
22

3+
## 0.3.5
4+
5+
Released on 2026-03-09.
6+
7+
### Enhancements
8+
9+
- Add automatic Ruby download support using rv binaries ([#1668](https://github.com/j178/prek/pull/1668))
10+
- Adjust open file limit on process startup ([#1705](https://github.com/j178/prek/pull/1705))
11+
- Allow parallel gem retry ([#1732](https://github.com/j178/prek/pull/1732))
12+
- Enable system-proxy feature on reqwest ([#1738](https://github.com/j178/prek/pull/1738))
13+
- Expose `--git-dir` to force hook installation target ([#1723](https://github.com/j178/prek/pull/1723))
14+
- Pass `--quiet`, `--verbose`, and `--no-progress` through `prek install` into generated hook scripts ([#1753](https://github.com/j178/prek/pull/1753))
15+
- Respect `core.sharedRepository` for hook permissions ([#1755](https://github.com/j178/prek/pull/1755))
16+
- Support legacy mode hook script ([#1706](https://github.com/j178/prek/pull/1706))
17+
- rust: support `cli:` git dependency 4th segment package disambiguation ([#1747](https://github.com/j178/prek/pull/1747))
18+
19+
### Bug fixes
20+
21+
- Fix Python `__main__.py` entry ([#1741](https://github.com/j178/prek/pull/1741))
22+
- python: strip `UV_SYSTEM_PYTHON` from `uv venv` and `pip install` commands ([#1756](https://github.com/j178/prek/pull/1756))
23+
24+
### Other changes
25+
26+
- Sync latest identify tags ([#1733](https://github.com/j178/prek/pull/1733))
27+
28+
### Contributors
29+
30+
- @Dev-iL
31+
- @tennox
32+
- @shaanmajid
33+
- @is-alnilam
34+
- @github-actions
35+
- @j178
36+
337
## 0.3.4
438

539
Released on 2026-02-28.

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ members = ["crates/*"]
33
resolver = "3"
44

55
[workspace.package]
6-
version = "0.3.4"
6+
version = "0.3.5"
77
edition = "2024"
88
rust-version = "1.91"
99
repository = "https://github.com/j178/prek"
1010
homepage = "https://prek.j178.dev/"
1111
license = "MIT"
1212

1313
[workspace.dependencies]
14-
prek-consts = { path = "crates/prek-consts", version = "0.3.4" }
15-
prek-identify = { path = "crates/prek-identify", version = "0.3.4" }
16-
prek-pty = { path = "crates/prek-pty", version = "0.3.4" }
14+
prek-consts = { path = "crates/prek-consts", version = "0.3.5" }
15+
prek-identify = { path = "crates/prek-identify", version = "0.3.5" }
16+
prek-pty = { path = "crates/prek-pty", version = "0.3.5" }
1717

1818
anstream = { version = "0.6.15" }
1919
anstyle-query = { version = "1.1.5" }

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ On Linux and macOS:
6363
<!-- --8<-- [start: linux-standalone-install] -->
6464

6565
```bash
66-
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.3.4/prek-installer.sh | sh
66+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/j178/prek/releases/download/v0.3.5/prek-installer.sh | sh
6767
```
6868

6969
<!-- --8<-- [end: linux-standalone-install] -->
@@ -73,7 +73,7 @@ On Windows:
7373
<!-- --8<-- [start: windows-standalone-install] -->
7474

7575
```powershell
76-
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.3.4/prek-installer.ps1 | iex"
76+
powershell -ExecutionPolicy ByPass -c "irm https://github.com/j178/prek/releases/download/v0.3.5/prek-installer.ps1 | iex"
7777
```
7878

7979
<!-- --8<-- [end: windows-standalone-install] -->

docs/integrations.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ A common pattern is to copy the binary into your own image:
1414

1515
```dockerfile
1616
FROM debian:bookworm-slim
17-
COPY --from=ghcr.io/j178/prek:v0.3.4 /prek /usr/local/bin/prek
17+
COPY --from=ghcr.io/j178/prek:v0.3.5 /prek /usr/local/bin/prek
1818
```
1919

2020
If you prefer, you can also run the distroless image directly:
2121

2222
```bash
23-
docker run --rm ghcr.io/j178/prek:v0.3.4 --version
23+
docker run --rm ghcr.io/j178/prek:v0.3.5 --version
2424
```
2525

2626
### Verifying Images
@@ -43,7 +43,7 @@ Loaded 1 attestation from GitHub API
4343

4444
!!! tip
4545

46-
Use a specific version tag (e.g., `ghcr.io/j178/prek:v0.3.4`) or image
46+
Use a specific version tag (e.g., `ghcr.io/j178/prek:v0.3.5`) or image
4747
digest rather than `latest` for verification.
4848

4949
## GitHub Actions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "prek"
3-
version = "0.3.4"
3+
version = "0.3.5"
44
description = "Better `pre-commit`, re-engineered in Rust"
55
authors = [{ name = "j178", email = "[email protected]" }]
66
requires-python = ">=3.8"

0 commit comments

Comments
 (0)