Bump version to 0.2.20 (#4745)

This commit is contained in:
Zanie Blue 2024-07-02 18:30:43 -04:00 committed by GitHub
parent 66a4b8e6b7
commit e88e1373e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 20 additions and 7 deletions

View file

@ -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

4
Cargo.lock generated
View file

@ -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"

View file

@ -1,5 +1,9 @@
# Changelog
## 0.2.20
<!-- No changes -->
## 0.2.19
### Preview features
@ -64,6 +68,7 @@
<!-- No changes -->
## 0.2.14
### Preview features
@ -200,6 +205,7 @@
<!-- No changes -->
## 0.2.3
### Preview features
@ -210,6 +216,7 @@
<!-- No changes -->
## 0.2.1
### Preview features
@ -246,6 +253,7 @@
<!-- No changes -->
## 0.1.43
### Preview features
@ -267,6 +275,7 @@
<!-- No changes -->
## 0.1.40
### Preview features

View file

@ -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

View file

@ -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 }

View file

@ -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 }

View file

@ -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"