File tree 6 files changed +34
-7
lines changed
6 files changed +34
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
30
## 0.2.9
4
31
5
32
### Enhancements
Original file line number Diff line number Diff line change @@ -53,8 +53,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
53
53
powershell -c " irm https://astral.sh/uv/install.ps1 | iex"
54
54
55
55
# 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"
58
58
59
59
# With pip.
60
60
pip install uv
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uv-version"
3
- version = " 0.2.9 "
3
+ version = " 0.2.10 "
4
4
edition = { workspace = true }
5
5
rust-version = { workspace = true }
6
6
homepage = { workspace = true }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " uv"
3
- version = " 0.2.9 "
3
+ version = " 0.2.10 "
4
4
edition = { workspace = true }
5
5
rust-version = { workspace = true }
6
6
homepage = { workspace = true }
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
5
5
[project ]
6
6
name = " uv"
7
- version = " 0.2.9 "
7
+ version = " 0.2.10 "
8
8
description = " An extremely fast Python package installer and resolver, written in Rust."
9
9
authors = [{ name = " Astral Software Inc." , email = " hey@astral.sh" }]
10
10
requires-python = " >=3.8"
You can’t perform that action at this time.
0 commit comments