From e9fc99e6229a91dcebe668dab648b2b6b3ccf81a Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 6 Jun 2024 14:21:33 -0400 Subject: [PATCH] Bump version to v0.2.9 (#4107) --- CHANGELOG.md | 18 ++++++++++++++++-- Cargo.lock | 4 ++-- README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 6 files changed, 23 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee9b9979b..0aab1b8ce 100644 --- a/CHANGELOG.md +++ b/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 ` to request the interpreter. diff --git a/Cargo.lock b/Cargo.lock index 9f9158bf7..cccc3b6b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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" diff --git a/README.md b/README.md index 7e40d08fc..e3c7e333b 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.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 diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index db98ce789..3a8125e59 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -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 } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 2326c91f0..9c34a5a65 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -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 } diff --git a/pyproject.toml b/pyproject.toml index f148da820..036731257 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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"