From daa8565a75249305821fdc34ace085060c082ba3 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 23 Feb 2024 11:40:36 -0600 Subject: [PATCH] Bump version to 0.1.10 (#1923) --- CHANGELOG.md | 14 ++++++++++++++ Cargo.lock | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dde29c67ae8..39f49cf738a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.1.10 + +### Enhancements + +- Omit `--find-links` from annotation header unless requested ([#1898](https://github.com/astral-sh/uv/pull/1898)) +- Write to stdout when `--output-file` is present ([#1892](https://github.com/astral-sh/uv/pull/1892)) + +### Bug fixes + +- Retain authentication when making range requests ([#1902](https://github.com/astral-sh/uv/pull/1902)) +- Fix uv-created venv detection ([#1908](https://github.com/astral-sh/uv/pull/1908)) +- Fix Windows `py` failure from spurious stderr ([#1885](https://github.com/astral-sh/uv/pull/1885)) +- Ignore Python 2 installations when querying for interpreters ([#1905](https://github.com/astral-sh/uv/pull/1905)) + ## 0.1.9 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index fe31691890a4..67320ec94f25 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4128,7 +4128,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" [[package]] name = "uv" -version = "0.1.9" +version = "0.1.10" dependencies = [ "anstream", "anyhow", diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index d9b217b8d1b1..51ad3acda2a0 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.9" +version = "0.1.10" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 490b937c834c..0ed1841bb8ee 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.9" +version = "0.1.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"