From 645d0399fd950dfb8476f73dc14efbd8c69b62ab Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 23 Apr 2024 09:35:27 -0500 Subject: [PATCH] Bump version to 0.1.37 (#3208) --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 27 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5fd2a82e183..454cd6471d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.1.37 + +### Enhancements + +- Change default HTTP read timeout to 30s ([#3182](https://github.com/astral-sh/uv/pull/3182)) +- Add `--python-platform` to `sync` and `install` commands ([#3154](https://github.com/astral-sh/uv/pull/3154)) +- Add ticks around error messages more consistently ([#3004](https://github.com/astral-sh/uv/pull/3004)) +- Fix Docker publish permissions in release pipeline ([#3195](https://github.com/astral-sh/uv/pull/3195)) +- Improve tracing for keyring provider ([#3207](https://github.com/astral-sh/uv/pull/3207)) + +### Performance + +- Update keyring provider to be async ([#3089](https://github.com/astral-sh/uv/pull/3089)) + +### Bug fixes + +- Fix fetch of credentials when cache is seeded with username ([#3206](https://github.com/astral-sh/uv/pull/3206)) + +### Documentation + +- Improve `--python-platform` documentation ([#3202](https://github.com/astral-sh/uv/pull/3202)) + ## 0.1.36 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 333e0ab4120..82682caf636 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4418,7 +4418,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.36" +version = "0.1.37" dependencies = [ "anstream", "anyhow", @@ -5015,7 +5015,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.36" +version = "0.1.37" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index b5abc60e250..3eeaee34d39 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.36" +version = "0.1.37" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 07468b4e6a2..aa6752cd8d7 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.36" +version = "0.1.37" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 7ee530c0b1b..c99e5b08d18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.36" +version = "0.1.37" 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"