diff --git a/CHANGELOG.md b/CHANGELOG.md index e398958adc2b..fd6bc6f2f918 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,30 @@ # Changelog +## 0.1.17 + +### Enhancements + +- Allow more-precise Git URLs to override less-precise Git URLs ([#2285](https://github.com/astral-sh/uv/pull/2285)) +- Add support for Metadata 2.2 ([#2293](https://github.com/astral-sh/uv/pull/2293)) +- Added ability to select bytecode invalidation mode of generated `.pyc` files ([#2297](https://github.com/astral-sh/uv/pull/2297)) +- Add `Seek` fallback for zip files with data descriptors ([#2320](https://github.com/astral-sh/uv/pull/2320)) + +### Bug fixes + +- Support reading UTF-16 requirements files ([#2283](https://github.com/astral-sh/uv/pull/2283)) +- Trim rows in `pip list` ([#2298](https://github.com/astral-sh/uv/pull/2298)) +- Avoid using setuptools shim of distutils ([#2305](https://github.com/astral-sh/uv/pull/2305)) +- Communicate PEP 517 hook results via files ([#2314](https://github.com/astral-sh/uv/pull/2314)) +- Increase default buffer size for wheel and source downloads ([#2319](https://github.com/astral-sh/uv/pull/2319)) +- Add `Accept-Encoding: identity` to remaining stream paths ([#2321](https://github.com/astral-sh/uv/pull/2321)) +- Avoid duplicating authorization header with netrc ([#2325](https://github.com/astral-sh/uv/pull/2325)) +- Remove duplicate `INSTALLER` in `RECORD` ([#2336](https://github.com/astral-sh/uv/pull/2336)) + +### Documentation + +- Add a custom suggestion to install wheel into the build environment ([#2307](https://github.com/astral-sh/uv/pull/2307)) +- Document the environment variables that uv respects ([#2318](https://github.com/astral-sh/uv/pull/2318)) + ## 0.1.16 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index 738520a233ca..c3898d12ea70 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4179,7 +4179,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" [[package]] name = "uv" -version = "0.1.16" +version = "0.1.17" dependencies = [ "anstream", "anyhow", @@ -4691,7 +4691,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.1.16" +version = "0.1.17" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 71b7cff5b216..96e3dac4c157 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.1.16" +version = "0.1.17" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index c37c28799da8..296983f2bffb 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.16" +version = "0.1.17" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 7ffd7c35fe09..cdb0a48adb7e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.16" +version = "0.1.17" 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"