Skip to content

Commit 907727c

Browse files
authored
Bump version to 0.2.10 (#4201)
1 parent 9a9ebe3 commit 907727c

File tree

6 files changed

+34
-7
lines changed

6 files changed

+34
-7
lines changed

CHANGELOG.md

+27
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Changelog
22

3+
## 0.2.10
4+
5+
### Enhancements
6+
7+
- Accept `file://` URLs for `requirements.txt` et all references ([#4145](https://github.com/astral-sh/uv/pull/4145))
8+
- Add support for `--prefix` ([#4085](https://github.com/astral-sh/uv/pull/4085))
9+
10+
### CLI
11+
12+
- Add `pyproject.toml` to CLI help ([#4181](https://github.com/astral-sh/uv/pull/4181))
13+
- Drop "registry" prefix from request timeout log ([#4144](https://github.com/astral-sh/uv/pull/4144))
14+
15+
### Bug fixes
16+
17+
- Allow transitive URLs via recursive extras ([#4155](https://github.com/astral-sh/uv/pull/4155))
18+
- Avoid pre-fetching for unbounded minimum versions ([#4149](https://github.com/astral-sh/uv/pull/4149))
19+
- Avoid showing dev hints for Python requirements ([#4111](https://github.com/astral-sh/uv/pull/4111))
20+
- Include non-standard ports in keyring host queries ([#4061](https://github.com/astral-sh/uv/pull/4061))
21+
- Omit URL dependencies from pre-release hints ([#4140](https://github.com/astral-sh/uv/pull/4140))
22+
- Improve static metadata extraction for Poetry projects ([#4182](https://github.com/astral-sh/uv/pull/4182))
23+
24+
### Documentation
25+
26+
- Document bytecode compilation in pip compatibility guide ([#4195](https://github.com/astral-sh/uv/pull/4195))
27+
- Fix PEP 508 link in preview doc `specifying_dependencies` ([#4158](https://github.com/astral-sh/uv/pull/4158))
28+
- Clarify role of `--system` flag ([#4031](https://github.com/astral-sh/uv/pull/4031))
29+
330
## 0.2.9
431

532
### Enhancements

Cargo.lock

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

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
5353
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
5454

5555
# For a specific version.
56-
curl -LsSf https://astral.sh/uv/0.2.9/install.sh | sh
57-
powershell -c "irm https://astral.sh/uv/0.2.9/install.ps1 | iex"
56+
curl -LsSf https://astral.sh/uv/0.2.10/install.sh | sh
57+
powershell -c "irm https://astral.sh/uv/0.2.10/install.ps1 | iex"
5858

5959
# With pip.
6060
pip install uv

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

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

0 commit comments

Comments
 (0)