Bump version to 0.1.37 (#3208)

This commit is contained in:
Zanie Blue 2024-04-23 09:35:27 -05:00 committed by GitHub
parent b8302d44de
commit 645d0399fd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 27 additions and 5 deletions

View file

@ -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

4
Cargo.lock generated
View file

@ -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"

View file

@ -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 }

View file

@ -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 }

View file

@ -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"