From fa6ed3410590bfb80b00a53da36fa08c63d54d8d Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 18 Jun 2024 12:46:32 -0400 Subject: [PATCH] Bump version to 0.2.13 (#4388) --- CHANGELOG.md | 6 ++++++ Cargo.lock | 4 ++-- PREVIEW-CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 7 files changed, 26 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e854621c4..9ca1f706b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.2.13 + +### Enhancements + +- Add resolver tracing logs for when we filter requirements ([#4381](https://github.com/astral-sh/uv/pull/4381)) + ## 0.2.12 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 6b5870966..174a1d9d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4418,7 +4418,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.12" +version = "0.2.13" dependencies = [ "anstream", "anyhow", @@ -5043,7 +5043,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.12" +version = "0.2.13" [[package]] name = "uv-virtualenv" diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index 63361579a..492d2d055 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.2.13 + +### Preview features + +- Add `--workspace` option to `uv add` ([#4362](https://github.com/astral-sh/uv/pull/4362)) +- Ignore query errors during `uv toolchain list` ([#4382](https://github.com/astral-sh/uv/pull/4382)) +- Respect `.python-version` files and fetch manged toolchains in uv project commands ([#4361](https://github.com/astral-sh/uv/pull/4361)) +- Respect `.python-version` in `uv venv --preview` ([#4360](https://github.com/astral-sh/uv/pull/4360)) + ## 0.2.12 ### Preview features @@ -117,6 +126,7 @@ + ## 0.2.3 ### Preview features @@ -127,6 +137,7 @@ + ## 0.2.1 ### Preview features @@ -163,6 +174,7 @@ + ## 0.1.43 ### Preview features @@ -184,6 +196,7 @@ + ## 0.1.40 ### Preview features diff --git a/README.md b/README.md index 8d91434a9..dfc579dde 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.12/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.12/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.13/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.13/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 667341a27..fecfea2f3 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.12" +version = "0.2.13" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index ec5a045f8..0a47cbaaf 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.12" +version = "0.2.13" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 7fedd0d27..c55563387 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.12" +version = "0.2.13" 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"