Skip to content

Commit f5891e3

Browse files
authored
Bump version to 0.4.9 (#7274)
1 parent 3f011f3 commit f5891e3

File tree

8 files changed

+31
-13
lines changed

8 files changed

+31
-13
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## 0.4.9
4+
5+
### Enhancements
6+
7+
- Add support for managed Python 3.13 ([#7263](https://github.com/astral-sh/uv/pull/7263))
8+
- Upgrade managed CPython versions to latest patch releases ([#7263](https://github.com/astral-sh/uv/pull/7263))
9+
- Allow setting a target version for `uv self update` ([#7252](https://github.com/astral-sh/uv/pull/7252))
10+
- Create `py.typed` files during `uv init --lib` ([#7232](https://github.com/astral-sh/uv/pull/7232))
11+
- Add a dedicated error for packages that fail due to `distutils` deprecation ([#7239](https://github.com/astral-sh/uv/pull/7239))
12+
- Improve error message when requested Python version is unsupported ([#7269](https://github.com/astral-sh/uv/pull/7269))
13+
- Add `uv run --no-sync` ([#7192]((https://github.com/astral-sh/uv/pull/7192))
14+
15+
### Bug fixes
16+
17+
- Avoid updating `pyproject.toml` offsets on non-add edits ([#7262](https://github.com/astral-sh/uv/pull/7262))
18+
- Invalidate cache when `--config-settings` change ([#7139](https://github.com/astral-sh/uv/pull/7139))
19+
- Remove workspace root for single-member workspace with `uv export` ([#7254](https://github.com/astral-sh/uv/pull/7254))
20+
321
## 0.4.8
422

523
### Enhancements

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

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
- `uv:latest`
24-
- `uv:{major}.{minor}.{patch}`, e.g., `uv:0.4.8`
24+
- `uv:{major}.{minor}.{patch}`, e.g., `uv:0.4.9`
2525
- `uv:{major}.{minor}`, e.g., `uv:0.4` (the latest patch version)
2626

2727
In addition, uv publishes the following images:
@@ -56,7 +56,7 @@ In addition, uv publishes the following images:
5656
- `uv:python3.8-bookworm-slim`
5757

5858
As with the distroless image, each image is published with uv version tags as
59-
`uv:{major}.{minor}.{patch}-{base}` and `uv:{major}.{minor}-{base}`, e.g., `uv:0.4.8-alpine`.
59+
`uv:{major}.{minor}.{patch}-{base}` and `uv:{major}.{minor}-{base}`, e.g., `uv:0.4.9-alpine`.
6060

6161
For more details, see the [GitHub Container](https://github.com/astral-sh/uv/pkgs/container/uv)
6262
page.
@@ -94,13 +94,13 @@ Note this requires `curl` to be available.
9494
In either case, it is best practice to pin to a specific uv version, e.g., with:
9595

9696
```dockerfile
97-
COPY --from=ghcr.io/astral-sh/uv:0.4.8 /uv /bin/uv
97+
COPY --from=ghcr.io/astral-sh/uv:0.4.9 /uv /bin/uv
9898
```
9999

100100
Or, with the installer:
101101

102102
```dockerfile
103-
ADD https://astral.sh/uv/0.4.8/install.sh /uv-installer.sh
103+
ADD https://astral.sh/uv/0.4.9/install.sh /uv-installer.sh
104104
```
105105

106106
### 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@v2
4141
with:
4242
# Install a specific version of uv.
43-
version: "0.4.8"
43+
version: "0.4.9"
4444
```
4545
4646
## Setting up Python

docs/guides/integration/pre-commit.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To compile requirements via pre-commit, add the following to the `.pre-commit-co
88
```yaml title=".pre-commit-config.yaml"
99
- repo: https://github.com/astral-sh/uv-pre-commit
1010
# uv version.
11-
rev: 0.4.8
11+
rev: 0.4.9
1212
hooks:
1313
# Compile requirements
1414
- id: pip-compile
@@ -20,7 +20,7 @@ To compile alternative files, modify `args` and `files`:
2020
```yaml title=".pre-commit-config.yaml"
2121
- repo: https://github.com/astral-sh/uv-pre-commit
2222
# uv version.
23-
rev: 0.4.8
23+
rev: 0.4.9
2424
hooks:
2525
# Compile requirements
2626
- id: pip-compile
@@ -33,7 +33,7 @@ To run the hook over multiple files at the same time:
3333
```yaml title=".pre-commit-config.yaml"
3434
- repo: https://github.com/astral-sh/uv-pre-commit
3535
# uv version.
36-
rev: 0.4.8
36+
rev: 0.4.9
3737
hooks:
3838
# Compile requirements
3939
- 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.4.8"
7+
version = "0.4.9"
88
description = "An extremely fast Python package and project manager, written in Rust."
99
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)