Skip to content

Commit a4cec56

Browse files
authored
Bump to 0.6.14 (#12786)
1 parent 1099867 commit a4cec56

File tree

12 files changed

+63
-23
lines changed

12 files changed

+63
-23
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,46 @@
33
<!-- prettier-ignore-start -->
44

55

6+
## 0.6.14
7+
8+
### Python versions
9+
10+
The following Python versions have been added:
11+
12+
- CPython 3.13.3
13+
- CPython 3.12.10
14+
- CPython 3.11.12
15+
- CPython 3.10.17
16+
- CPython 3.9.22
17+
18+
See the [`python-build-standalone` release notes](https://github.com/astral-sh/python-build-standalone/releases/tag/20250409) for more details.
19+
20+
### Enhancements
21+
22+
- Add `uv-build` and `uv_build` aliases to `uv init --build-backend` ([#12776](https://github.com/astral-sh/uv/pull/12776))
23+
- Emit dedicated error message for Conda `environment.yml` files ([#12669](https://github.com/astral-sh/uv/pull/12669))
24+
25+
26+
### Preview features
27+
28+
- Build backend: Check module dir exists for sdist build ([#12779](https://github.com/astral-sh/uv/pull/12779))
29+
- Build backend: Fix sdist with long directories ([#12764](https://github.com/astral-sh/uv/pull/12764))
30+
31+
### Performance
32+
33+
- Avoid querying GitHub on repeated install invocations ([#12767](https://github.com/astral-sh/uv/pull/12767))
34+
35+
### Bug fixes
36+
37+
- Error when `tool.uv.sources` is set in system-level configuration file ([#12757](https://github.com/astral-sh/uv/pull/12757))
38+
- Split workspace members onto their own lines in `uv init` ([#12756](https://github.com/astral-sh/uv/pull/12756))
39+
40+
### Documentation
41+
42+
- Add lockfile note about PEP 751 ([#12732](https://github.com/astral-sh/uv/pull/12732))
43+
- Extend the reference documentation for `uv pip sync` ([#12683](https://github.com/astral-sh/uv/pull/12683))
44+
- Fix mismatched pip interface header / nav titles ([#12640](https://github.com/astral-sh/uv/pull/12640))
45+
646
## 0.6.13
747

848
### Enhancements

Cargo.lock

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

crates/uv-build/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-build"
3-
version = "0.6.13"
3+
version = "0.6.14"
44
edition.workspace = true
55
rust-version.workspace = true
66
homepage.workspace = true

crates/uv-build/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uv-build"
3-
version = "0.6.13"
3+
version = "0.6.14"
44
description = "The uv build backend"
55
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
66
requires-python = ">=3.8"

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.6.13"
3+
version = "0.6.14"
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.6.13"
3+
version = "0.6.14"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

docs/getting-started/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ uv provides a standalone installer to download and install uv:
2525
Request a specific version by including it in the URL:
2626

2727
```console
28-
$ curl -LsSf https://astral.sh/uv/0.6.13/install.sh | sh
28+
$ curl -LsSf https://astral.sh/uv/0.6.14/install.sh | sh
2929
```
3030

3131
=== "Windows"
@@ -41,7 +41,7 @@ uv provides a standalone installer to download and install uv:
4141
Request a specific version by including it in the URL:
4242

4343
```console
44-
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.6.13/install.ps1 | iex"
44+
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.6.14/install.ps1 | iex"
4545
```
4646

4747
!!! tip

docs/guides/integration/aws-lambda.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ the second stage, we'll copy this directory over to the final image, omitting th
9292
other unnecessary files.
9393

9494
```dockerfile title="Dockerfile"
95-
FROM ghcr.io/astral-sh/uv:0.6.13 AS uv
95+
FROM ghcr.io/astral-sh/uv:0.6.14 AS uv
9696

9797
# First, bundle the dependencies into the task root.
9898
FROM public.ecr.aws/lambda/python:3.13 AS builder
@@ -334,7 +334,7 @@ And confirm that opening http://127.0.0.1:8000/ in a web browser displays, "Hell
334334
Finally, we'll update the Dockerfile to include the local library in the deployment package:
335335

336336
```dockerfile title="Dockerfile"
337-
FROM ghcr.io/astral-sh/uv:0.6.13 AS uv
337+
FROM ghcr.io/astral-sh/uv:0.6.14 AS uv
338338

339339
# First, bundle the dependencies into the task root.
340340
FROM public.ecr.aws/lambda/python:3.13 AS builder

docs/guides/integration/docker.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ $ docker run --rm -it ghcr.io/astral-sh/uv:debian uv --help
3131
The following distroless images are available:
3232

3333
- `ghcr.io/astral-sh/uv:latest`
34-
- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.6.13`
34+
- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.6.14`
3535
- `ghcr.io/astral-sh/uv:{major}.{minor}`, e.g., `ghcr.io/astral-sh/uv:0.6` (the latest patch
3636
version)
3737

@@ -72,7 +72,7 @@ And the following derived images are available:
7272

7373
As with the distroless image, each derived image is published with uv version tags as
7474
`ghcr.io/astral-sh/uv:{major}.{minor}.{patch}-{base}` and
75-
`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.6.13-alpine`.
75+
`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.6.14-alpine`.
7676

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

112112
```dockerfile
113-
COPY --from=ghcr.io/astral-sh/uv:0.6.13 /uv /uvx /bin/
113+
COPY --from=ghcr.io/astral-sh/uv:0.6.14 /uv /uvx /bin/
114114
```
115115

116116
!!! tip
@@ -128,7 +128,7 @@ COPY --from=ghcr.io/astral-sh/uv:0.6.13 /uv /uvx /bin/
128128
Or, with the installer:
129129

130130
```dockerfile
131-
ADD https://astral.sh/uv/0.6.13/install.sh /uv-installer.sh
131+
ADD https://astral.sh/uv/0.6.14/install.sh /uv-installer.sh
132132
```
133133

134134
### Installing a project
@@ -554,5 +554,5 @@ Verified OK
554554
!!! tip
555555

556556
These examples use `latest`, but best practice is to verify the attestation for a specific
557-
version tag, e.g., `ghcr.io/astral-sh/uv:0.6.13`, or (even better) the specific image digest,
557+
version tag, e.g., `ghcr.io/astral-sh/uv:0.6.14`, or (even better) the specific image digest,
558558
such as `ghcr.io/astral-sh/uv:0.5.27@sha256:5adf09a5a526f380237408032a9308000d14d5947eafa687ad6c6a2476787b4f`.

docs/guides/integration/github.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: astral-sh/setup-uv@v5
4848
with:
4949
# Install a specific version of uv.
50-
version: "0.6.13"
50+
version: "0.6.14"
5151
```
5252
5353
## Setting up Python

0 commit comments

Comments
 (0)