Skip to content

Commit 4fac4cb

Browse files
authored
Bump version to 0.9.9 (#16708)
1 parent e96354a commit 4fac4cb

File tree

17 files changed

+68
-32
lines changed

17 files changed

+68
-32
lines changed

CHANGELOG.md

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

55

6+
## 0.9.9
7+
8+
Released on 2025-11-12.
9+
10+
### Deprecations
11+
12+
- Deprecate use of `--project` in `uv init` ([#16674](https://github.com/astral-sh/uv/pull/16674))
13+
14+
### Enhancements
15+
16+
- Add iOS support to Python interpreter discovery ([#16686](https://github.com/astral-sh/uv/pull/16686))
17+
- Reject ambiguously parsed URLs ([#16622](https://github.com/astral-sh/uv/pull/16622))
18+
- Allow explicit values in `uv version --bump` ([#16555](https://github.com/astral-sh/uv/pull/16555))
19+
- Warn on use of managed pre-release Python versions when a stable version is available ([#16619](https://github.com/astral-sh/uv/pull/16619))
20+
- Allow signing trampolines on Windows by using `.rcdata` to store metadata ([#15068](https://github.com/astral-sh/uv/pull/15068))
21+
- Add `--only-emit-workspace` and similar variants to `uv export` ([#16681](https://github.com/astral-sh/uv/pull/16681))
22+
23+
### Preview features
24+
25+
- Add `uv workspace dir` command ([#16678](https://github.com/astral-sh/uv/pull/16678))
26+
- Add `uv workspace metadata` command ([#16516](https://github.com/astral-sh/uv/pull/16516))
27+
28+
### Configuration
29+
30+
- Add `UV_NO_DEFAULT_GROUPS` environment variable ([#16645](https://github.com/astral-sh/uv/pull/16645))
31+
32+
### Bug fixes
33+
34+
- Remove `torch-model-archiver` and `torch-tb-profiler` from PyTorch backend ([#16655](https://github.com/astral-sh/uv/pull/16655))
35+
- Fix Pixi environment detection ([#16585](https://github.com/astral-sh/uv/pull/16585))
36+
37+
### Documentation
38+
39+
- Fix `CMD` path in FastAPI Dockerfile ([#16701](https://github.com/astral-sh/uv/pull/16701))
40+
41+
642
## 0.9.8
743

844
Released on 2025-11-07.

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.9.8"
3+
version = "0.9.9"
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.9.8"
3+
version = "0.9.9"
44
description = "The uv build backend"
55
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
66
requires-python = ">=3.8"

crates/uv-static/src/env_vars.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ impl EnvVars {
244244

245245
/// Equivalent to the `--no-default-groups` command-line argument. If set, uv will
246246
/// not select the default dependency groups defined in `tool.uv.default-groups`.
247-
#[attr_added_in("next release")]
247+
#[attr_added_in("0.9.9")]
248248
pub const UV_NO_DEFAULT_GROUPS: &'static str = "UV_NO_DEFAULT_GROUPS";
249249

250250
/// Equivalent to the `--no-binary` command-line argument. If set, uv will install

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

docs/concepts/build-backend.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ To use uv as a build backend in an existing project, add `uv_build` to the
3131

3232
```toml title="pyproject.toml"
3333
[build-system]
34-
requires = ["uv_build>=0.9.8,<0.10.0"]
34+
requires = ["uv_build>=0.9.9,<0.10.0"]
3535
build-backend = "uv_build"
3636
```
3737

docs/concepts/projects/init.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ dependencies = []
113113
example-pkg = "example_pkg:main"
114114

115115
[build-system]
116-
requires = ["uv_build>=0.9.8,<0.10.0"]
116+
requires = ["uv_build>=0.9.9,<0.10.0"]
117117
build-backend = "uv_build"
118118
```
119119

@@ -136,7 +136,7 @@ dependencies = []
136136
example-pkg = "example_pkg:main"
137137

138138
[build-system]
139-
requires = ["uv_build>=0.9.8,<0.10.0"]
139+
requires = ["uv_build>=0.9.9,<0.10.0"]
140140
build-backend = "uv_build"
141141
```
142142

@@ -197,7 +197,7 @@ requires-python = ">=3.11"
197197
dependencies = []
198198

199199
[build-system]
200-
requires = ["uv_build>=0.9.8,<0.10.0"]
200+
requires = ["uv_build>=0.9.9,<0.10.0"]
201201
build-backend = "uv_build"
202202
```
203203

docs/concepts/projects/workspaces.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ bird-feeder = { workspace = true }
7575
members = ["packages/*"]
7676

7777
[build-system]
78-
requires = ["uv_build>=0.9.8,<0.10.0"]
78+
requires = ["uv_build>=0.9.9,<0.10.0"]
7979
build-backend = "uv_build"
8080
```
8181

@@ -106,7 +106,7 @@ tqdm = { git = "https://github.com/tqdm/tqdm" }
106106
members = ["packages/*"]
107107

108108
[build-system]
109-
requires = ["uv_build>=0.9.8,<0.10.0"]
109+
requires = ["uv_build>=0.9.9,<0.10.0"]
110110
build-backend = "uv_build"
111111
```
112112

@@ -188,7 +188,7 @@ dependencies = ["bird-feeder", "tqdm>=4,<5"]
188188
bird-feeder = { path = "packages/bird-feeder" }
189189

190190
[build-system]
191-
requires = ["uv_build>=0.9.8,<0.10.0"]
191+
requires = ["uv_build>=0.9.9,<0.10.0"]
192192
build-backend = "uv_build"
193193
```
194194

0 commit comments

Comments
 (0)