From 5132c6a6e25100b09e5b4de16ebe27b2159469a3 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 13 May 2024 20:38:11 -0400 Subject: [PATCH] Bump version to v0.1.43 (#3564) --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 35 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b4b964c70f3b..e6133c181aeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,35 @@ # Changelog +## 0.1.43 + +### Enhancements + +- Annotate sources of requirements in `pip compile` output ([#3269](https://github.com/astral-sh/uv/pull/3269)) +- Track origin for `setup.py` files and friends ([#3481](https://github.com/astral-sh/uv/pull/3481)) + +### Configuration + +- Consolidate concurrency limits and expose as environment variables ([#3493](https://github.com/astral-sh/uv/pull/3493)) + +### Release + +- Use manylinux: auto to enable musllinux_1_2 aarch64 builds ([#3444](https://github.com/astral-sh/uv/pull/3444)) +- Enable musllinux_1_1 wheels ([#3523](https://github.com/astral-sh/uv/pull/3523)) + +### Bug fixes + +- Avoid keyword arguments for PEP 517 build hooks ([#3517](https://github.com/astral-sh/uv/pull/3517)) +- Apply advisory locks when building source distributions ([#3525](https://github.com/astral-sh/uv/pull/3525)) +- Avoid attempting to build editables when fetching metadata ([#3563](https://github.com/astral-sh/uv/pull/3563)) +- Clone individual files on windows ReFS ([#3551](https://github.com/astral-sh/uv/pull/3551)) +- Filter irrelevant requirements from source annotations ([#3479](https://github.com/astral-sh/uv/pull/3479)) +- Make cache clearing robust to directories without read permissions ([#3524](https://github.com/astral-sh/uv/pull/3524)) +- Respect constraints on editable dependencies ([#3554](https://github.com/astral-sh/uv/pull/3554)) +- Skip Python 2 versions when locating Python ([#3476](https://github.com/astral-sh/uv/pull/3476)) +- Make `--isolated` a global argument ([#3558](https://github.com/astral-sh/uv/pull/3558)) +- Allow unknown `pyproject.toml` fields ([#3511](https://github.com/astral-sh/uv/pull/3511)) +- Change error value detection for glibc ([#3487](https://github.com/astral-sh/uv/pull/3487)) + ## 0.1.42 This release includes stabilized support for persistent configuration in uv. diff --git a/Cargo.lock b/Cargo.lock index 7900dec6b4b3..fc33ebcdf422 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4482,7 +4482,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.42" +version = "0.1.43" dependencies = [ "anstream", "anyhow", @@ -5063,7 +5063,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.42" +version = "0.1.43" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 59fa1aa55ed8..1772ad57f60a 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.42" +version = "0.1.43" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 16d039f98fe3..78467a027ed0 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.42" +version = "0.1.43" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 01b2e957a401..9fe39483e36a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.42" +version = "0.1.43" 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"