Bump version to v0.2.5 (#3885)

This commit is contained in:
Charlie Marsh 2024-05-28 14:05:32 -04:00 committed by GitHub
parent 78c43c6a7a
commit 47db418ba2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 17 additions and 5 deletions

View file

@ -1,5 +1,17 @@
# Changelog
## 0.2.5
### Enhancements
- Add support for x86 Windows ([#3873](https://github.com/astral-sh/uv/pull/3873))
- Add support for `prepare_metadata_for_build_editable` hook ([#3870](https://github.com/astral-sh/uv/pull/3870))
- Add concurrent progress bars for downloads ([#3252](https://github.com/astral-sh/uv/pull/3252))
### Bug fixes
- Update bundled Python URLs and add `"arm"` architecture variant ([#3855](https://github.com/astral-sh/uv/pull/3855))
## 0.2.4
### CLI

4
Cargo.lock generated
View file

@ -4470,7 +4470,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.2.4"
version = "0.2.5"
dependencies = [
"anstream",
"anyhow",
@ -5064,7 +5064,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.2.4"
version = "0.2.5"
[[package]]
name = "uv-virtualenv"

View file

@ -1,6 +1,6 @@
[package]
name = "uv-version"
version = "0.2.4"
version = "0.2.5"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }

View file

@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.2.4"
version = "0.2.5"
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.4"
version = "0.2.5"
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"