diff --git a/CHANGELOG.md b/CHANGELOG.md index 38b2141ef6c8..418866a5ed58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.1.19 + +### Configuration + +- Add `UV_NATIVE_TLS` environment variable ([#2412](https://github.com/astral-sh/uv/pull/2412)) +- Allow `SSL_CERT_FILE` without requiring `--native-tls` ([#2401](https://github.com/astral-sh/uv/pull/2401)) +- Add support for retrieving credentials from `keyring` ([#2254](https://github.com/astral-sh/uv/pull/2254)) + +### Bug fixes + +- Add backoff for transient Windows failures ([#2419](https://github.com/astral-sh/uv/pull/2419)) +- Move architecture and operating system probing to Python ([#2381](https://github.com/astral-sh/uv/pull/2381)) +- Respect `--native-tls` in `venv` ([#2433](https://github.com/astral-sh/uv/pull/2433)) +- Treat non-existent site-packages as empty ([#2413](https://github.com/astral-sh/uv/pull/2413)) + +### Documentation + +- Document HTTP authentication ([#2425](https://github.com/astral-sh/uv/pull/2425)) + +### Performance + +- Improve performance of version range operations ([#2421](https://github.com/astral-sh/uv/pull/2421)) + ## 0.1.18 ### Breaking changes diff --git a/Cargo.lock b/Cargo.lock index c452aa0afe4e..207f4a992cd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4198,7 +4198,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" [[package]] name = "uv" -version = "0.1.18" +version = "0.1.19" dependencies = [ "anstream", "anyhow", @@ -4719,7 +4719,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.18" +version = "0.1.19" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 8bb0dee41ea9..06390072791d 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.18" +version = "0.1.19" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index e16bb6d73594..ce8d2a61baa8 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.18" +version = "0.1.19" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 8fc73891a212..dd644cd06354 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.18" +version = "0.1.19" 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"