From e88e1373e672461066c1d9c0e56e33123b66ad84 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 2 Jul 2024 18:30:43 -0400 Subject: [PATCH] Bump version to 0.2.20 (#4745) --- CHANGELOG.md | 4 ++++ Cargo.lock | 4 ++-- PREVIEW-CHANGELOG.md | 9 +++++++++ README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 7 files changed, 20 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b50f8dee5..56a752078 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.20 + +- Fix issue where the standalone installer failed due to a missing `uvx` binary ([#4743](https://github.com/astral-sh/uv/pull/4743)) + ## 0.2.19 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index a73d11f83..ea6458de6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4425,7 +4425,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.19" +version = "0.2.20" dependencies = [ "anstream", "anyhow", @@ -5121,7 +5121,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.19" +version = "0.2.20" [[package]] name = "uv-virtualenv" diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index d4ae2535b..a63a0db2b 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.20 + + + ## 0.2.19 ### Preview features @@ -64,6 +68,7 @@ + ## 0.2.14 ### Preview features @@ -200,6 +205,7 @@ + ## 0.2.3 ### Preview features @@ -210,6 +216,7 @@ + ## 0.2.1 ### Preview features @@ -246,6 +253,7 @@ + ## 0.1.43 ### Preview features @@ -267,6 +275,7 @@ + ## 0.1.40 ### Preview features diff --git a/README.md b/README.md index 91bb9e247..df1509887 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.19/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.19/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.20/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.20/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 51f2de7ee..4bc6780ef 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.19" +version = "0.2.20" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 6be58c453..9e3873e1f 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.19" +version = "0.2.20" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index d86f34a92..67236ca3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.19" +version = "0.2.20" 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"