mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 21:35:00 +00:00
Bump version to 0.2.23 (#4903)
This commit is contained in:
parent
857d2e8f1e
commit
4bc36c0cb8
7 changed files with 36 additions and 7 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
@ -1,5 +1,18 @@
|
||||||
# Changelog
|
# 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
|
## 0.2.22
|
||||||
|
|
||||||
### CLI
|
### CLI
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4438,7 +4438,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.2.22"
|
version = "0.2.23"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@ -5137,7 +5137,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv-version"
|
name = "uv-version"
|
||||||
version = "0.2.22"
|
version = "0.2.23"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv-virtualenv"
|
name = "uv-virtualenv"
|
||||||
|
|
|
@ -1,5 +1,20 @@
|
||||||
# Changelog
|
# 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
|
## 0.2.22
|
||||||
|
|
||||||
### Preview features
|
### Preview features
|
||||||
|
@ -34,6 +49,7 @@
|
||||||
|
|
||||||
<!-- No changes -->
|
<!-- No changes -->
|
||||||
|
|
||||||
|
|
||||||
## 0.2.19
|
## 0.2.19
|
||||||
|
|
||||||
### Preview features
|
### Preview features
|
||||||
|
|
|
@ -53,8 +53,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||||
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
|
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
|
||||||
|
|
||||||
# For a specific version.
|
# For a specific version.
|
||||||
curl -LsSf https://astral.sh/uv/0.2.22/install.sh | sh
|
curl -LsSf https://astral.sh/uv/0.2.23/install.sh | sh
|
||||||
powershell -c "irm https://astral.sh/uv/0.2.22/install.ps1 | iex"
|
powershell -c "irm https://astral.sh/uv/0.2.23/install.ps1 | iex"
|
||||||
|
|
||||||
# With pip.
|
# With pip.
|
||||||
pip install uv
|
pip install uv
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv-version"
|
name = "uv-version"
|
||||||
version = "0.2.22"
|
version = "0.2.23"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.2.22"
|
version = "0.2.23"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.2.22"
|
version = "0.2.23"
|
||||||
description = "An extremely fast Python package installer and resolver, written in Rust."
|
description = "An extremely fast Python package installer and resolver, written in Rust."
|
||||||
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue