diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9588288..5fd2a82e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.1.36 + +### Enhancements + +- Add support for embedded Python on Windows ([#3161](https://github.com/astral-sh/uv/pull/3161)) +- Add Docker image publishing to release pipeline ([#3155](https://github.com/astral-sh/uv/pull/3155)) + +### Configuration + +- Add `UV_CONSTRAINT` environment variable to provide value for `--constraint` ([#3162](https://github.com/astral-sh/uv/pull/3162)) + +### Bug fixes + +- Avoid waiting for metadata for `--no-deps` editables ([#3188](https://github.com/astral-sh/uv/pull/3188)) +- Fix `venvlauncher.exe` reference in venv creation ([#3160](https://github.com/astral-sh/uv/pull/3160)) +- Fix authentication for URLs with a shared realm ([#3130](https://github.com/astral-sh/uv/pull/3130)) +- Restrict observed requirements to direct when `--no-deps` is specified ([#3191](https://github.com/astral-sh/uv/pull/3191)) + +### Documentation + +- Add a versioning policy to the README ([#3151](https://github.com/astral-sh/uv/pull/3151)) + ## 0.1.35 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 2fb580d26..99c96ee22 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4398,7 +4398,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.1.35" +version = "0.1.36" dependencies = [ "anstream", "anyhow", @@ -4994,7 +4994,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.35" +version = "0.1.36" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index c3a8b0f0e..b5abc60e2 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.35" +version = "0.1.36" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 0addff8a8..07468b4e6 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.35" +version = "0.1.36" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 86953e1c8..7ee530c0b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.35" +version = "0.1.36" 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"