mirror of
https://github.com/astral-sh/uv.git
synced 2025-11-02 04:48:18 +00:00
Bump version to v0.2.9 (#4107)
This commit is contained in:
parent
e89c181d66
commit
e9fc99e622
6 changed files with 23 additions and 9 deletions
18
CHANGELOG.md
18
CHANGELOG.md
|
|
@ -1,5 +1,19 @@
|
|||
# Changelog
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Enhancements
|
||||
|
||||
- Respect existing `.egg-link` files in site packages ([#4082](https://github.com/astral-sh/uv/pull/4082))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Avoid extra-only filtering for constraints ([#4095](https://github.com/astral-sh/uv/pull/4095))
|
||||
|
||||
### Documentation
|
||||
|
||||
- Add install link for specific version to README ([#4105](https://github.com/astral-sh/uv/pull/4105))
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Bug fixes
|
||||
|
|
@ -141,10 +155,10 @@ In summary, the following Python interpreter requests are now allowed:
|
|||
Previously, interpreter requests that were not versions or paths were always treated as executable
|
||||
names.
|
||||
|
||||
To align the user expecations, uv now respects the interpreter that starts it. For example, `python -m uv ...` will
|
||||
To align the user expectations, uv now respects the interpreter that starts it. For example, `python -m uv ...` will
|
||||
now prefer the `python` interpreter that was used to start uv instead of searching for a virtual environment.
|
||||
|
||||
We now check if discovered intepreters are virtual environments. This means that setting `VIRTUAL_ENV` to a Python
|
||||
We now check if discovered interpreters are virtual environments. This means that setting `VIRTUAL_ENV` to a Python
|
||||
installation directory that is _not_ a virtual environment will no longer work. Instead, use `--system` or `--python <path>`
|
||||
to request the interpreter.
|
||||
|
||||
|
|
|
|||
4
Cargo.lock
generated
4
Cargo.lock
generated
|
|
@ -4367,7 +4367,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
|||
|
||||
[[package]]
|
||||
name = "uv"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -4961,7 +4961,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-version"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
|
||||
[[package]]
|
||||
name = "uv-virtualenv"
|
||||
|
|
|
|||
|
|
@ -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.8/install.sh | sh
|
||||
powershell -c "irm https://astral.sh/uv/0.2.8/install.ps1 | iex"
|
||||
curl -LsSf https://astral.sh/uv/0.2.9/install.sh | sh
|
||||
powershell -c "irm https://astral.sh/uv/0.2.9/install.ps1 | iex"
|
||||
|
||||
# With pip.
|
||||
pip install uv
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-version"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
|||
|
||||
[project]
|
||||
name = "uv"
|
||||
version = "0.2.8"
|
||||
version = "0.2.9"
|
||||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue