mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-08 22:05:00 +00:00
Bump version to 0.1.37 (#3208)
This commit is contained in:
parent
b8302d44de
commit
645d0399fd
5 changed files with 27 additions and 5 deletions
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -1,5 +1,27 @@
|
||||||
# Changelog
|
# 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
|
## 0.1.36
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -4418,7 +4418,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.36"
|
version = "0.1.37"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
@ -5015,7 +5015,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv-version"
|
name = "uv-version"
|
||||||
version = "0.1.36"
|
version = "0.1.37"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv-virtualenv"
|
name = "uv-virtualenv"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv-version"
|
name = "uv-version"
|
||||||
version = "0.1.36"
|
version = "0.1.37"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.36"
|
version = "0.1.37"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.36"
|
version = "0.1.37"
|
||||||
description = "An extremely fast Python package installer and resolver, written in Rust."
|
description = "An extremely fast Python package installer and resolver, written in Rust."
|
||||||
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue