From 8d66718077f40d1db9c1f94a14616fd73e012aa3 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Tue, 13 Aug 2024 12:05:11 -0500 Subject: [PATCH] Bump version to 0.2.36 (#6060) --- CHANGELOG.md | 9 +++++++++ Cargo.lock | 4 ++-- PREVIEW-CHANGELOG.md | 23 +++++++++++++++++++++++ README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- docs/guides/integration/pre-commit.md | 6 +++--- pyproject.toml | 2 +- 8 files changed, 42 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ee48febb..71e982d0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.2.36 + +### Bug fixes + +- Use consistent canonicalization for URLs ([#5980](https://github.com/astral-sh/uv/pull/5980)) +- Improve warning message when parsing `pyproject.toml` fails ([#6009](https://github.com/astral-sh/uv/pull/6009)) +- Improve handling of overlapping markers in universal resolver ([#5887](https://github.com/astral-sh/uv/pull/5887)) + ## 0.2.35 ### CLI @@ -1806,3 +1814,4 @@ pass the `--native-tls` command-line flag to enable this behavior. - Grammar nit ([#1345](https://github.com/astral-sh/uv/pull/1345)) + diff --git a/Cargo.lock b/Cargo.lock index a8b3114f6..23285e6f4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4464,7 +4464,7 @@ checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314" [[package]] name = "uv" -version = "0.2.35" +version = "0.2.36" dependencies = [ "anstream", "anyhow", @@ -5210,7 +5210,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.35" +version = "0.2.36" [[package]] name = "uv-virtualenv" diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index 0adc3b020..a1b1cb190 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,5 +1,28 @@ # Changelog +## 0.2.36 + +### Preview features + +- Add resolver error context to `run` and `tool run` ([#5991](https://github.com/astral-sh/uv/pull/5991)) +- Avoid replacing executables on no-op upgrades ([#5998](https://github.com/astral-sh/uv/pull/5998)) +- Colocate Python install cache with destination directory ([#6043](https://github.com/astral-sh/uv/pull/6043)) +- Filter mixed sources from `--find-links` entries in lockfile ([#6025](https://github.com/astral-sh/uv/pull/6025)) +- Fix some outdated documentation discussing Python environments ([#6058](https://github.com/astral-sh/uv/pull/6058)) +- Fix projects guide typo ([#6033](https://github.com/astral-sh/uv/pull/6033)) +- Fix tools guide typo ([#6027](https://github.com/astral-sh/uv/pull/6027)) +- Hide python options in `uv tool list` help ([#6003](https://github.com/astral-sh/uv/pull/6003)) +- Improve top-level help for `uv tool` commands ([#5983](https://github.com/astral-sh/uv/pull/5983)) +- Move help documentation into dedicated page ([#6057](https://github.com/astral-sh/uv/pull/6057)) +- Remove `editable: false` support ([#5987](https://github.com/astral-sh/uv/pull/5987)) +- Remove uses of `Option` in `ResolutionGraph` ([#6035](https://github.com/astral-sh/uv/pull/6035)) +- Resolve relative `tool.uv.sources` relative to containing project ([#6045](https://github.com/astral-sh/uv/pull/6045)) +- Support PEP 723 scripts in `uv add` and `uv remove` ([#5995](https://github.com/astral-sh/uv/pull/5995)) +- Support `tool.uv` in PEP 723 scripts ([#5990](https://github.com/astral-sh/uv/pull/5990)) +- Treat local indexes as registry sources in lockfile ([#6016](https://github.com/astral-sh/uv/pull/6016)) +- Use simplified paths in lockfile ([#6049](https://github.com/astral-sh/uv/pull/6049)) +- Use upgrade-specific output for tool upgrade ([#5997](https://github.com/astral-sh/uv/pull/5997)) + ## 0.2.35 ### Preview features diff --git a/README.md b/README.md index baf293c55..359cbd962 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh powershell -c "irm https://astral.sh/uv/install.ps1 | iex" # For a specific version. -curl -LsSf https://astral.sh/uv/0.2.35/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.35/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.36/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.36/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index a6c4035c8..b99f8b21c 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.35" +version = "0.2.36" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 8cc9af907..cd003e4df 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.35" +version = "0.2.36" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/docs/guides/integration/pre-commit.md b/docs/guides/integration/pre-commit.md index 77c3cfe85..652e8f442 100644 --- a/docs/guides/integration/pre-commit.md +++ b/docs/guides/integration/pre-commit.md @@ -8,7 +8,7 @@ To compile requirements via pre-commit, add the following to the `.pre-commit-co ```yaml title=".pre-commit-config.yaml" - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.2.35 + rev: 0.2.36 hooks: # Compile requirements - id: pip-compile @@ -20,7 +20,7 @@ To compile alternative files, modify `args` and `files`: ```yaml title=".pre-commit-config.yaml" - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.2.35 + rev: 0.2.36 hooks: # Compile requirements - id: pip-compile @@ -33,7 +33,7 @@ To run the hook over multiple files at the same time: ```yaml title=".pre-commit-config.yaml" - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.2.35 + rev: 0.2.36 hooks: # Compile requirements - id: pip-compile diff --git a/pyproject.toml b/pyproject.toml index 50025b21e..692a57754 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.35" +version = "0.2.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"