From a589ad5066643d24a52857f4ce09279b669c4fed Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 3 Jun 2024 13:40:28 -0400 Subject: [PATCH] Bump version to v0.2.6 (#3991) --- CHANGELOG.md | 18 ++++++++++++++++++ Cargo.lock | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 23 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dc6e2af1e3d9..0f21e9c794ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.2.6 + +### Enhancements + +- Support PEP 508 requirements for editables ([#3946](https://github.com/astral-sh/uv/pull/3946)) +- Discard fragments when parsing unnamed URLs ([#3940](https://github.com/astral-sh/uv/pull/3940)) +- Port all Git functionality to use Git CLI ([#3833](https://github.com/astral-sh/uv/pull/3833)) +- Use statically linked C runtime on Windows ([#3966](https://github.com/astral-sh/uv/pull/3966)) + +### Bug fixes + +- Disable concurrent progress bars in Jupyter Notebooks ([#3890](https://github.com/astral-sh/uv/pull/3890)) +- Initialize multi-progress state before individual bars ([#3901](https://github.com/astral-sh/uv/pull/3901)) +- Add missing `i686` alias for `x86` ([#3899](https://github.com/astral-sh/uv/pull/3899)) +- Add missing `ppc64le` alias for `powerpc64le` ([#3963](https://github.com/astral-sh/uv/pull/3963)) +- Fix reference to `--python-version` patch behavior ([#3989](https://github.com/astral-sh/uv/pull/3989)) +- Avoid race condition in `OnceMap` ([#3987](https://github.com/astral-sh/uv/pull/3987)) + ## 0.2.5 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 739cc2a85a73..d9aecaad97f2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4367,7 +4367,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anstream", "anyhow", @@ -4960,7 +4960,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.5" +version = "0.2.6" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index f01dd849033b..90612c69b5a1 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.5" +version = "0.2.6" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 98a395557b37..2896fa52659c 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.5" +version = "0.2.6" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 744eed0d5c41..660306640e9f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.5" +version = "0.2.6" 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"