From 32e5cacdd600e073ca6ab6ca11f76ec5e7e2c20e Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 26 Feb 2024 10:46:17 -0500 Subject: [PATCH] Bump version to v0.1.11 (#1976) --- CHANGELOG.md | 39 +++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 4 files changed, 42 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 39f49cf738a4..b7147be9c693 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,44 @@ # Changelog +## 0.1.11 + +### Enhancements + +- Add support for pip-compile's `--unsafe-package` flag ([#1889](https://github.com/astral-sh/uv/pull/1889)) +- Improve interpreter discovery logging ([#1909](https://github.com/astral-sh/uv/pull/1909)) +- Implement `uv pip list` ([#1662](https://github.com/astral-sh/uv/pull/1662)) +- Allow round-trip via `freeze` command ([#1936](https://github.com/astral-sh/uv/pull/1936)) +- Don't write pip compile output to stdout with `-q` ([#1962](https://github.com/astral-sh/uv/pull/1962)) +- Add long-form version output ([#1930](https://github.com/astral-sh/uv/pull/1930)) + +### Compatibility + +- Accept single string for `backend-path` ([#1969](https://github.com/astral-sh/uv/pull/1969)) +- Add compatibility for deprecated `python_implementation` marker ([#1933](https://github.com/astral-sh/uv/pull/1933)) +- Generate versioned `pip` launchers ([#1918](https://github.com/astral-sh/uv/pull/1918)) + +### Bug fixes + +- Avoid erroring for source distributions with symlinks in archive ([#1944](https://github.com/astral-sh/uv/pull/1944)) +- Expand scope of archive timestamping ([#1960](https://github.com/astral-sh/uv/pull/1960)) +- Gracefully handle virtual environments with conflicting packages ([#1893](https://github.com/astral-sh/uv/pull/1893)) +- Invalidate dependencies when editables are updated ([#1955](https://github.com/astral-sh/uv/pull/1955)) +- Make < exclusive for non-prerelease markers ([#1878](https://github.com/astral-sh/uv/pull/1878)) +- Properly apply constraints in venv audit ([#1956](https://github.com/astral-sh/uv/pull/1956)) +- Re-sync editables on-change ([#1959](https://github.com/astral-sh/uv/pull/1959)) +- Remove current directory from PATH in PEP 517 hooks ([#1975](https://github.com/astral-sh/uv/pull/1975)) +- Remove `--upgrade` and `--quiet` flags from generated output files ([#1873](https://github.com/astral-sh/uv/pull/1873)) +- Use full python version in `pyvenv.cfg` ([#1979](https://github.com/astral-sh/uv/pull/1979)) + +### Performance +- fix `uv pip install` handling of gzip'd response and PEP 691 ([#1978](https://github.com/astral-sh/uv/pull/1978)) +- Remove `spawn_blocking` from version map ([#1966](https://github.com/astral-sh/uv/pull/1966)) + +### Documentation + +- Clarify `lowest` vs. `lowest-direct` resolution strategies ([#1954](https://github.com/astral-sh/uv/pull/1954)) +- Improve error message for network timeouts ([#1961](https://github.com/astral-sh/uv/pull/1961)) + ## 0.1.10 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index fe889cc3bdaa..efd58e171c7d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4131,7 +4131,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a" [[package]] name = "uv" -version = "0.1.10" +version = "0.1.11" dependencies = [ "anstream", "anyhow", diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 23534cbde324..dfd6f099d2d7 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.1.10" +version = "0.1.11" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 0ed1841bb8ee..9e8c368bb564 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.1.10" +version = "0.1.11" 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"