From 45f8821ffe6511f77c95a13bdb3216e3aa8dc322 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Mon, 24 Jun 2024 09:45:23 -0500 Subject: [PATCH] Bump version to 0.2.15 --- CHANGELOG.md | 22 ++++++++++++++++++++++ PREVIEW-CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 3 +-- 6 files changed, 35 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e272ca1837..410207d38186 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## 0.2.15 + +### Enhancements + +- Add `--emit-build-options` flag to `uv pip compile` interface ([#4463](https://github.com/astral-sh/uv/pull/4463)) +- Add `pythonw` support for gui scripts on Windows ([#4409](https://github.com/astral-sh/uv/pull/4409)) +- Add `uv pip tree` ([#3859](https://github.com/astral-sh/uv/pull/3859)) + +### CLI + +- Adjust the docs for the pip CLI commands ([#4445](https://github.com/astral-sh/uv/pull/4445)) +- Fix casing of `--no-compile` alias ([#4453](https://github.com/astral-sh/uv/pull/4453)) + +### Bug fixes + +- Fix ordering of prefer-system toolchain preference ([#4441](https://github.com/astral-sh/uv/pull/4441)) +- Respect index strategy in source distribution builds ([#4468](https://github.com/astral-sh/uv/pull/4468)) + +### Documentation + +- Add documentation for using uv in a Docker image ([#4433](https://github.com/astral-sh/uv/pull/4433)) + ## 0.2.14 ### Enhancements diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index d13faac99842..2b018bb926d2 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.2.15 + + + ## 0.2.14 ### Preview features @@ -136,6 +140,7 @@ + ## 0.2.3 ### Preview features @@ -146,6 +151,7 @@ + ## 0.2.1 ### Preview features @@ -182,6 +188,7 @@ + ## 0.1.43 ### Preview features @@ -203,6 +210,7 @@ + ## 0.1.40 ### Preview features diff --git a/README.md b/README.md index 683961dc108f..4f2c65e781f7 100644 --- a/README.md +++ b/README.md @@ -53,8 +53,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.14/install.sh | sh -powershell -c "irm https://astral.sh/uv/0.2.14/install.ps1 | iex" +curl -LsSf https://astral.sh/uv/0.2.15/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.15/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index ca139bc81a58..9becbad9019a 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.14" +version = "0.2.15" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index c1f0db054f93..36e1edcba430 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.14" +version = "0.2.15" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index bac80a99b99b..9d18482c20b6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.14" +version = "0.2.15" 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" @@ -66,6 +66,5 @@ changelog_contributors = false version_files = [ "README.md", "crates/uv/Cargo.toml", - "crates/uv-cli/Cargo.toml", "crates/uv-version/Cargo.toml", ]