From 907727cb1be1b7d1d39cbbff8708292725ebd3ec Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 10 Jun 2024 12:40:19 -0400 Subject: [PATCH] Bump version to 0.2.10 (#4201) --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ Cargo.lock | 4 ++-- README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 6 files changed, 34 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b7bbcfc6f..ab0ac31a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,32 @@ # Changelog +## 0.2.10 + +### Enhancements + +- Accept `file://` URLs for `requirements.txt` et all references ([#4145](https://github.com/astral-sh/uv/pull/4145)) +- Add support for `--prefix` ([#4085](https://github.com/astral-sh/uv/pull/4085)) + +### CLI + +- Add `pyproject.toml` to CLI help ([#4181](https://github.com/astral-sh/uv/pull/4181)) +- Drop "registry" prefix from request timeout log ([#4144](https://github.com/astral-sh/uv/pull/4144)) + +### Bug fixes + +- Allow transitive URLs via recursive extras ([#4155](https://github.com/astral-sh/uv/pull/4155)) +- Avoid pre-fetching for unbounded minimum versions ([#4149](https://github.com/astral-sh/uv/pull/4149)) +- Avoid showing dev hints for Python requirements ([#4111](https://github.com/astral-sh/uv/pull/4111)) +- Include non-standard ports in keyring host queries ([#4061](https://github.com/astral-sh/uv/pull/4061)) +- Omit URL dependencies from pre-release hints ([#4140](https://github.com/astral-sh/uv/pull/4140)) +- Improve static metadata extraction for Poetry projects ([#4182](https://github.com/astral-sh/uv/pull/4182)) + +### Documentation + +- Document bytecode compilation in pip compatibility guide ([#4195](https://github.com/astral-sh/uv/pull/4195)) +- Fix PEP 508 link in preview doc `specifying_dependencies` ([#4158](https://github.com/astral-sh/uv/pull/4158)) +- Clarify role of `--system` flag ([#4031](https://github.com/astral-sh/uv/pull/4031)) + ## 0.2.9 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 4f146c5ad..5509695a2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4368,7 +4368,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.9" +version = "0.2.10" dependencies = [ "anstream", "anyhow", @@ -4962,7 +4962,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.9" +version = "0.2.10" [[package]] name = "uv-virtualenv" diff --git a/README.md b/README.md index 9c5fab91b..1c00a9178 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.9/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.9/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.10/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.10/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 3a8125e59..24a72b20c 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.9" +version = "0.2.10" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 1c0c43943..f3e86fcee 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.9" +version = "0.2.10" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 036731257..f28bffa7f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.9" +version = "0.2.10" 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"