mirror of https://github.com/astral-sh/uv
Bump version to v0.1.43 (#3564)
This commit is contained in:
parent
8cec217eff
commit
5132c6a6e2
30
CHANGELOG.md
30
CHANGELOG.md
|
|
@ -1,5 +1,35 @@
|
|||
# Changelog
|
||||
|
||||
## 0.1.43
|
||||
|
||||
### Enhancements
|
||||
|
||||
- Annotate sources of requirements in `pip compile` output ([#3269](https://github.com/astral-sh/uv/pull/3269))
|
||||
- Track origin for `setup.py` files and friends ([#3481](https://github.com/astral-sh/uv/pull/3481))
|
||||
|
||||
### Configuration
|
||||
|
||||
- Consolidate concurrency limits and expose as environment variables ([#3493](https://github.com/astral-sh/uv/pull/3493))
|
||||
|
||||
### Release
|
||||
|
||||
- Use manylinux: auto to enable musllinux_1_2 aarch64 builds ([#3444](https://github.com/astral-sh/uv/pull/3444))
|
||||
- Enable musllinux_1_1 wheels ([#3523](https://github.com/astral-sh/uv/pull/3523))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Avoid keyword arguments for PEP 517 build hooks ([#3517](https://github.com/astral-sh/uv/pull/3517))
|
||||
- Apply advisory locks when building source distributions ([#3525](https://github.com/astral-sh/uv/pull/3525))
|
||||
- Avoid attempting to build editables when fetching metadata ([#3563](https://github.com/astral-sh/uv/pull/3563))
|
||||
- Clone individual files on windows ReFS ([#3551](https://github.com/astral-sh/uv/pull/3551))
|
||||
- Filter irrelevant requirements from source annotations ([#3479](https://github.com/astral-sh/uv/pull/3479))
|
||||
- Make cache clearing robust to directories without read permissions ([#3524](https://github.com/astral-sh/uv/pull/3524))
|
||||
- Respect constraints on editable dependencies ([#3554](https://github.com/astral-sh/uv/pull/3554))
|
||||
- Skip Python 2 versions when locating Python ([#3476](https://github.com/astral-sh/uv/pull/3476))
|
||||
- Make `--isolated` a global argument ([#3558](https://github.com/astral-sh/uv/pull/3558))
|
||||
- Allow unknown `pyproject.toml` fields ([#3511](https://github.com/astral-sh/uv/pull/3511))
|
||||
- Change error value detection for glibc ([#3487](https://github.com/astral-sh/uv/pull/3487))
|
||||
|
||||
## 0.1.42
|
||||
|
||||
This release includes stabilized support for persistent configuration in uv.
|
||||
|
|
|
|||
|
|
@ -4482,7 +4482,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
|
|||
|
||||
[[package]]
|
||||
name = "uv"
|
||||
version = "0.1.42"
|
||||
version = "0.1.43"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -5063,7 +5063,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-version"
|
||||
version = "0.1.42"
|
||||
version = "0.1.43"
|
||||
|
||||
[[package]]
|
||||
name = "uv-virtualenv"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-version"
|
||||
version = "0.1.42"
|
||||
version = "0.1.43"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv"
|
||||
version = "0.1.42"
|
||||
version = "0.1.43"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
homepage = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
|||
|
||||
[project]
|
||||
name = "uv"
|
||||
version = "0.1.42"
|
||||
version = "0.1.43"
|
||||
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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue