Skip to content

Commit 2cee752

Browse files
authored
Bump version to 0.1.33 (#3094)
1 parent b456fa2 commit 2cee752

File tree

5 files changed

+39
-5
lines changed

5 files changed

+39
-5
lines changed

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.1.33
4+
5+
### Breaking changes
6+
7+
Using the keyring requires a username to be provided on index URLs now. Previously, the username `oauth2accesstoken`
8+
was assumed. This will affect Google Artifact Registry users using `--keyring-provider subprocess` and an index URL
9+
without a username. The suggested fix is to add the required username to index URLs, e.g., `https://oauth2accesstoken@<url>`.
10+
11+
See [#2976](https://github.com/astral-sh/uv/pull/2976#discussion_r1566521453) for details.
12+
13+
### Enhancements
14+
15+
- Allow passing a virtual environment path to `uv pip --python` ([#3064](https://github.com/astral-sh/uv/pull/3064))
16+
- Add compatibility argument for `pip list --outdated` ([#3055](https://github.com/astral-sh/uv/pull/3055))
17+
18+
### CLI
19+
20+
- Enable auto-wrapping of `--help` output ([#3058](https://github.com/astral-sh/uv/pull/3058))
21+
- Show `--require-hashes` CLI argument in help ([#3093](https://github.com/astral-sh/uv/pull/3093))
22+
23+
### Performance
24+
25+
- Incorporate heuristics to improve package prioritization ([#3087](https://github.com/astral-sh/uv/pull/3087))
26+
27+
### Bug fixes
28+
29+
- Fix HTTP authentication when the password includes percent encoded characters (e.g. with Google Artifact Registry) ([#2822](https://github.com/astral-sh/uv/issues/2822))
30+
- Use usernames from URLs when looking for credentials in netrc files and the keyring [#2563](https://github.com/astral-sh/uv/issues/2563))
31+
- Skip `HEAD` requests for indexes that return 403 (e.g. PyPICloud) ([#3070](https://github.com/astral-sh/uv/pull/3070))
32+
- Use kebab-case consistently ([#3080](https://github.com/astral-sh/uv/pull/3080))
33+
- Show package name in no version for direct dependency error ([#3056](https://github.com/astral-sh/uv/pull/3056))
34+
- Avoid erroring when encountering `.tar.bz2` source distributions ([#3069](https://github.com/astral-sh/uv/pull/3069))
35+
36+
337
## 0.1.32
438

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

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.1.32"
7+
version = "0.1.33"
88
description = "An extremely fast Python package installer and resolver, written in Rust."
99
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)