diff --git a/CHANGELOG.md b/CHANGELOG.md index 03c2e0444..a081c4717 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## 0.1.27 + +### Enhancements + +- Add `--exclude-editable` support to `pip-freeze` ([#2740](https://github.com/astral-sh/uv/pull/2740)) +- Add `pyproject.toml` et al to list of prompted packages ([#2746](https://github.com/astral-sh/uv/pull/2746)) +- Consider installed packages during resolution ([#2596](https://github.com/astral-sh/uv/pull/2596)) +- Recursively allow URL requirements for local dependencies ([#2702](https://github.com/astral-sh/uv/pull/2702)) + +### Configuration + +- Add `UV_RESOLUTION` environment variable for `--resolution` ([#2720](https://github.com/astral-sh/uv/pull/2720)) + +### Bug fixes + +- Respect overrides in all direct-dependency iterators ([#2742](https://github.com/astral-sh/uv/pull/2742)) +- Respect subdirectories when reading static metadata ([#2728](https://github.com/astral-sh/uv/pull/2728)) + ## 0.1.26 ### Bug fixes diff --git a/Cargo.lock b/Cargo.lock index 83aece858..f9fc7aeb6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4283,7 +4283,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.26" +version = "0.1.27" dependencies = [ "anstream", "anyhow", @@ -4799,7 +4799,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.26" +version = "0.1.27" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 494937fdc..8d25a3e92 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.26" +version = "0.1.27" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 461936d96..1c45ec068 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.26" +version = "0.1.27" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index d32801eca..bd91d85ca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.26" +version = "0.1.27" 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"