Skip to content

Commit 9f1ba2b

Browse files
Bump version to v0.5.14 (#10279)
1 parent 906511f commit 9f1ba2b

File tree

9 files changed

+45
-15
lines changed

9 files changed

+45
-15
lines changed

CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## 0.5.14
4+
5+
### Enhancements
6+
7+
- Add `--exact` flag to `uv run` ([#10198](https://github.com/astral-sh/uv/pull/10198))
8+
- Add `--outdated` support to `uv pip tree` ([#10199](https://github.com/astral-sh/uv/pull/10199))
9+
- Add a required version setting to uv ([#10248](https://github.com/astral-sh/uv/pull/10248))
10+
- Add loongarch64 to supported Python platform tags ([#10223](https://github.com/astral-sh/uv/pull/10223))
11+
- Add manylinux2014 aliases for `--python-platform` ([#10217](https://github.com/astral-sh/uv/pull/10217))
12+
- Add support for Python interpreters on ARMv5TE platforms ([#10234](https://github.com/astral-sh/uv/pull/10234))
13+
- Add support for optional `--description` in `uv init` ([#10209](https://github.com/astral-sh/uv/pull/10209))
14+
- Ignore empty or missing hrefs in Simple HTML ([#10276](https://github.com/astral-sh/uv/pull/10276))
15+
- Patch pkgconfig files after Python install ([#10189](https://github.com/astral-sh/uv/pull/10189))
16+
17+
### Performance
18+
19+
- Actually use jemalloc as alternative allocator ([#10269](https://github.com/astral-sh/uv/pull/10269))
20+
- Parse URLs lazily in resolver ([#10259](https://github.com/astral-sh/uv/pull/10259))
21+
- Use `BTreeMap::range` to avoid iterating over unnecessary versions ([#10266](https://github.com/astral-sh/uv/pull/10266))
22+
23+
### Bug fixes
24+
25+
- Accept directories with space names in `uv init` ([#10246](https://github.com/astral-sh/uv/pull/10246))
26+
- Avoid forking on version in non-universal resolutions ([#10274](https://github.com/astral-sh/uv/pull/10274))
27+
- Avoid stripping query parameters from URLs ([#10253](https://github.com/astral-sh/uv/pull/10253))
28+
- Consider workspace dependencies to be 'direct' ([#10197](https://github.com/astral-sh/uv/pull/10197))
29+
- Detect cyclic dependencies during builds ([#10258](https://github.com/astral-sh/uv/pull/10258))
30+
- Guard against self-deletion in `uv venv` and `uv tool` ([#10206](https://github.com/astral-sh/uv/pull/10206))
31+
- Respect static metadata for already-installed distributions ([#10242](https://github.com/astral-sh/uv/pull/10242))
32+
333
## 0.5.13
434

535
### Bug fixes

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/uv-version/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv-version"
3-
version = "0.5.13"
3+
version = "0.5.14"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

crates/uv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv"
3-
version = "0.5.13"
3+
version = "0.5.14"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

docs/getting-started/installation.md

+2-2
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.5.13/install.sh | sh
28+
$ curl -LsSf https://astral.sh/uv/0.5.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.5.13/install.ps1 | iex"
44+
$ powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.5.14/install.ps1 | iex"
4545
```
4646

4747
!!! tip

docs/guides/integration/docker.md

+4-4
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.5.13`
24+
- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.5.14`
2525
- `ghcr.io/astral-sh/uv:{major}.{minor}`, e.g., `ghcr.io/astral-sh/uv:0.5` (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.5.13-alpine`.
65+
`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.5.14-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.5.13 /uv /uvx /bin/
103+
COPY --from=ghcr.io/astral-sh/uv:0.5.14 /uv /uvx /bin/
104104
```
105105

106106
Or, with the installer:
107107

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

112112
### Installing a project

docs/guides/integration/github.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
uses: astral-sh/setup-uv@v5
4141
with:
4242
# Install a specific version of uv.
43-
version: "0.5.13"
43+
version: "0.5.14"
4444
```
4545
4646
## Setting up Python

docs/guides/integration/pre-commit.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ To compile requirements via pre-commit, add the following to the `.pre-commit-co
2929
```yaml title=".pre-commit-config.yaml"
3030
- repo: https://github.com/astral-sh/uv-pre-commit
3131
# uv version.
32-
rev: 0.5.13
32+
rev: 0.5.14
3333
hooks:
3434
# Compile requirements
3535
- id: pip-compile
@@ -41,7 +41,7 @@ To compile alternative files, modify `args` and `files`:
4141
```yaml title=".pre-commit-config.yaml"
4242
- repo: https://github.com/astral-sh/uv-pre-commit
4343
# uv version.
44-
rev: 0.5.13
44+
rev: 0.5.14
4545
hooks:
4646
# Compile requirements
4747
- id: pip-compile
@@ -54,7 +54,7 @@ To run the hook over multiple files at the same time:
5454
```yaml title=".pre-commit-config.yaml"
5555
- repo: https://github.com/astral-sh/uv-pre-commit
5656
# uv version.
57-
rev: 0.5.13
57+
rev: 0.5.14
5858
hooks:
5959
# Compile requirements
6060
- id: pip-compile

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "uv"
7-
version = "0.5.13"
7+
version = "0.5.14"
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)