From d26e1c2ddd17a93a91bd9e784210b6118e8191af Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 29 Feb 2024 12:04:02 -0500 Subject: [PATCH] Bump version to v0.1.13 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 297c6b81c73f7..7d67181bd2c4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 0.1.13 + +### Bug fixes + +- Allow pre-releases for requirements in constraints files ([#2069](https://github.com/astral-sh/uv/pull/2069)) +- Avoid canonicalizing user-provided interpreters ([#2072](https://github.com/astral-sh/uv/pull/2072)) +- Avoid truncating EXTERNALLY-MANAGED error message ([#2073](https://github.com/astral-sh/uv/pull/2073)) +- Extend activation highlighting to entire command ([#2070](https://github.com/astral-sh/uv/pull/2070)) +- Prioritize `PATH` over `py --list-paths` in Windows selection ([#2057](https://github.com/astral-sh/uv/pull/2057)) + +### Rust API + +- Add option pass environment variables for SDist building ([#2039](https://github.com/astral-sh/uv/pull/2039)) + +### Other changes + +- feat: expose uv_normalize types ([#2082](https://github.com/astral-sh/uv/pull/2082)) +- tweak the order of index priority ([#2083](https://github.com/astral-sh/uv/pull/2083)) + ## 0.1.12 ### CLI diff --git a/Cargo.lock b/Cargo.lock index effc393d63a55..f2f003dd89629 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4133,7 +4133,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" [[package]] name = "uv" -version = "0.1.12" +version = "0.1.13" dependencies = [ "anstream", "anyhow", diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index f2602f384ad91..993a754272e6a 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.12" +version = "0.1.13" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 4175b0cc7af9c..2b517e2ce88b9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.12" +version = "0.1.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"