diff --git a/CHANGELOG.md b/CHANGELOG.md index 25968982281d..8180c1baabb4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## 0.2.23 + +### Enhancements + +- Update Windows trampoline binaries ([#4864](https://github.com/astral-sh/uv/pull/4864)) +- Show user-facing warning when falling back to copy installs ([#4880](https://github.com/astral-sh/uv/pull/4880)) + +### Bug fixes + +- Initialize all `--prefix` subdirectories ([#4895](https://github.com/astral-sh/uv/pull/4895)) +- Respect `requires-python` when prefetching ([#4900](https://github.com/astral-sh/uv/pull/4900)) +- Partially revert `Requires-Python` version narrowing ([#4902](https://github.com/astral-sh/uv/pull/4902)) + ## 0.2.22 ### CLI diff --git a/Cargo.lock b/Cargo.lock index bab43c0433df..b7d5b66e1719 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4438,7 +4438,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.22" +version = "0.2.23" dependencies = [ "anstream", "anyhow", @@ -5137,7 +5137,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.22" +version = "0.2.23" [[package]] name = "uv-virtualenv" diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index d7ea943e4568..6d62ee6048cf 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 0.2.23 + +### Preview features + +- Avoid creating cache directories in tool directory ([#4868](https://github.com/astral-sh/uv/pull/4868)) +- Add progress bar when downloading python ([#4840](https://github.com/astral-sh/uv/pull/4840)) +- Add some decoration to tool CLI ([#4865](https://github.com/astral-sh/uv/pull/4865)) +- Add some text decoration to toolchain CLI ([#4882](https://github.com/astral-sh/uv/pull/4882)) +- Add user-facing output to indicate PEP 723 script ([#4881](https://github.com/astral-sh/uv/pull/4881)) +- Ensure Pythons are aligned in `uv python list` ([#4884](https://github.com/astral-sh/uv/pull/4884)) +- Fix always-plural message in uv python install ([#4866](https://github.com/astral-sh/uv/pull/4866)) +- Skip installing `--with` requirements if present in base environment ([#4879](https://github.com/astral-sh/uv/pull/4879)) +- Sort dependencies before wheels and source distributions ([#4897](https://github.com/astral-sh/uv/pull/4897)) +- Improve logging during resolver forking ([#4894](https://github.com/astral-sh/uv/pull/4894)) + ## 0.2.22 ### Preview features @@ -34,6 +49,7 @@ + ## 0.2.19 ### Preview features diff --git a/README.md b/README.md index f023dd396fc6..31f61f05d7a2 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh powershell -c "irm https://astral.sh/uv/install.ps1 | iex" # For a specific version. -curl -LsSf https://astral.sh/uv/0.2.22/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.22/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.23/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.23/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 25e6dfa98dff..c87ea00aafe5 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.22" +version = "0.2.23" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 19bfbffe4ea6..3651222720c9 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.22" +version = "0.2.23" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index d5282c4bf3b8..0ba70594edf1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.22" +version = "0.2.23" description = "An extremely fast Python package installer and resolver, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] requires-python = ">=3.8"