Skip to content

Commit 1b9b9d5

Browse files
Bump version to v0.4.26 (#8508)
1 parent 9540d6a commit 1b9b9d5

File tree

8 files changed

+44
-13
lines changed

8 files changed

+44
-13
lines changed

CHANGELOG.md

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

3+
## 0.4.26
4+
5+
### Enhancements
6+
7+
- Allow static dependency metadata entries for direct URL requirements ([#7846](https://github.com/astral-sh/uv/pull/7846))
8+
- Use reinstall report formatting for `uv python install --reinstall` ([#8487](https://github.com/astral-sh/uv/pull/8487))
9+
- Add support for system-level `uv.toml` configuration ([#7851](https://github.com/astral-sh/uv/pull/7851))
10+
11+
### Bug fixes
12+
13+
- Apply `requires-python` narrowing with upper bounds ([#8403](https://github.com/astral-sh/uv/pull/8403))
14+
- Avoid rewriting `[[tool.uv.index]]` entries when credentials are provided ([#8502](https://github.com/astral-sh/uv/pull/8502))
15+
- Fix `uv add` comment handling for empty arrays ([#8504](https://github.com/astral-sh/uv/pull/8504))
16+
- Replace dashes with underscores in index credential variables ([#8452](https://github.com/astral-sh/uv/pull/8452))
17+
- Respect `--allow-insecure-host` in `uv publish` ([#8440](https://github.com/astral-sh/uv/pull/8440))
18+
- Allow arbitrary `--package` includes in `uv tree` ([#8507](https://github.com/astral-sh/uv/pull/8507))
19+
- Remove existing Python install after successful download in `uv python install` ([#8485](https://github.com/astral-sh/uv/pull/8485))
20+
21+
### Documentation
22+
23+
- Add docs example for URLs with `[tool.uv.dependency-metadata]` ([#8484](https://github.com/astral-sh/uv/pull/8484))
24+
- Add help page for build failures ([#8286](https://github.com/astral-sh/uv/pull/8286))
25+
- Fix `cache-keys` typo in `tags = true` ([#8422](https://github.com/astral-sh/uv/pull/8422))
26+
- Add documentation examples for manual branch, rev, and tag Git dependencies ([#8497](https://github.com/astral-sh/uv/pull/8497))
27+
28+
### Error messages
29+
30+
- Improve error message for cache info serialization ([#8500](https://github.com/astral-sh/uv/pull/8500))
31+
- Suggest `--from` command when executable is available for `uvx` ([#8473](https://github.com/astral-sh/uv/pull/8473))
32+
- Support `--with-editable` in `uv tool install` ([#8472](https://github.com/astral-sh/uv/pull/8472))
33+
334
## 0.4.25
435

536
### Enhancements

Cargo.lock

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

crates/uv-version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv-version"
3-
version = "0.4.25"
3+
version = "0.4.26"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

crates/uv/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv"
3-
version = "0.4.25"
3+
version = "0.4.26"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

docs/guides/integration/docker.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ $ docker run ghcr.io/astral-sh/uv --help
2121
uv provides a distroless Docker image including the `uv` binary. The following tags are published:
2222

2323
- `ghcr.io/astral-sh/uv:latest`
24-
- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.4.25`
24+
- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.4.26`
2525
- `ghcr.io/astral-sh/uv:{major}.{minor}`, e.g., `ghcr.io/astral-sh/uv:0.4` (the latest patch
2626
version)
2727

@@ -62,7 +62,7 @@ In addition, uv publishes the following images:
6262

6363
As with the distroless image, each image is published with uv version tags as
6464
`ghcr.io/astral-sh/uv:{major}.{minor}.{patch}-{base}` and
65-
`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.4.25-alpine`.
65+
`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.4.26-alpine`.
6666

6767
For more details, see the [GitHub Container](https://github.com/astral-sh/uv/pkgs/container/uv)
6868
page.
@@ -100,13 +100,13 @@ Note this requires `curl` to be available.
100100
In either case, it is best practice to pin to a specific uv version, e.g., with:
101101

102102
```dockerfile
103-
COPY --from=ghcr.io/astral-sh/uv:0.4.25 /uv /uvx /bin/
103+
COPY --from=ghcr.io/astral-sh/uv:0.4.26 /uv /uvx /bin/
104104
```
105105

106106
Or, with the installer:
107107

108108
```dockerfile
109-
ADD https://astral.sh/uv/0.4.25/install.sh /uv-installer.sh
109+
ADD https://astral.sh/uv/0.4.26/install.sh /uv-installer.sh
110110
```
111111

112112
### Installing a project

docs/guides/integration/github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: astral-sh/setup-uv@v3
4141
with:
4242
# Install a specific version of uv.
43-
version: "0.4.25"
43+
version: "0.4.26"
4444
```
4545
4646
## Setting up Python

docs/guides/integration/pre-commit.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To compile requirements via pre-commit, add the following to the `.pre-commit-co
88
```yaml title=".pre-commit-config.yaml"
99
- repo: https://github.com/astral-sh/uv-pre-commit
1010
# uv version.
11-
rev: 0.4.25
11+
rev: 0.4.26
1212
hooks:
1313
# Compile requirements
1414
- id: pip-compile
@@ -20,7 +20,7 @@ To compile alternative files, modify `args` and `files`:
2020
```yaml title=".pre-commit-config.yaml"
2121
- repo: https://github.com/astral-sh/uv-pre-commit
2222
# uv version.
23-
rev: 0.4.25
23+
rev: 0.4.26
2424
hooks:
2525
# Compile requirements
2626
- id: pip-compile
@@ -33,7 +33,7 @@ To run the hook over multiple files at the same time:
3333
```yaml title=".pre-commit-config.yaml"
3434
- repo: https://github.com/astral-sh/uv-pre-commit
3535
# uv version.
36-
rev: 0.4.25
36+
rev: 0.4.26
3737
hooks:
3838
# Compile requirements
3939
- id: pip-compile

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "uv"
7-
version = "0.4.25"
7+
version = "0.4.26"
88
description = "An extremely fast Python package and project manager, written in Rust."
99
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)