From 0046a0d5963fd88ae10f35f1e65b641ae75e173f Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 2 Apr 2024 16:39:35 -0500 Subject: [PATCH] Bump version to 0.1.28 (#2785) --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 24 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a081c4717..983d5996a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 0.1.28 + +### Enhancements + +- Recursively resolve direct URL references upfront ([#2684](https://github.com/astral-sh/uv/pull/2684)) + +### Performance + +- Populate the in-memory index when resolving lookahead URLs ([#2761](https://github.com/astral-sh/uv/pull/2761)) + +### Bug fixes + +- Detect Fish via `FISH_VERSION` ([#2781](https://github.com/astral-sh/uv/pull/2781)) +- Exclude installed distributions with multiple versions from consideration in the resolver ([#2779](https://github.com/astral-sh/uv/pull/2779)) +- Resolve non-determistic behavior in preferences due to site-packages ordering ([#2780](https://github.com/astral-sh/uv/pull/2780)) +- Use canonical URL to key redirect map ([#2764](https://github.com/astral-sh/uv/pull/2764)) +- Use distribution database and index for all pre-resolution phases ([#2766](https://github.com/astral-sh/uv/pull/2766)) +- Fix `uv self update` on Linux ([#2783](https://github.com/astral-sh/uv/pull/2783)) + ## 0.1.27 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index f9fc7aeb6..b8cba8cb4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4283,7 +4283,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.27" +version = "0.1.28" dependencies = [ "anstream", "anyhow", @@ -4799,7 +4799,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.27" +version = "0.1.28" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 8d25a3e92..9258fe59b 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.27" +version = "0.1.28" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 1c45ec068..1dba92d0a 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.27" +version = "0.1.28" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index bd91d85ca..e8801643a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.27" +version = "0.1.28" 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"