diff --git a/CHANGELOG.md b/CHANGELOG.md index 63e272ca1..9ca1f706b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,19 +1,5 @@ # Changelog -## 0.2.14 - -### Enhancements - -- Support toolchain requests with platform-tag style Python implementations and version ([#4407](https://github.com/astral-sh/uv/pull/4407)) - -### CLI - -- Use "Prepared" instead of "Downloaded" in logs ([#4394](https://github.com/astral-sh/uv/pull/4394)) - -### Bug fixes - -- Treat mismatched directory and file urls as unsatisfied requirements ([#4393](https://github.com/astral-sh/uv/pull/4393)) - ## 0.2.13 ### Enhancements diff --git a/Cargo.lock b/Cargo.lock index ca0b5942c..b01c53b76 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4419,7 +4419,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.14" +version = "0.2.13" dependencies = [ "anstream", "anyhow", @@ -5045,7 +5045,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.14" +version = "0.2.13" [[package]] name = "uv-virtualenv" diff --git a/PREVIEW-CHANGELOG.md b/PREVIEW-CHANGELOG.md index d13faac99..492d2d055 100644 --- a/PREVIEW-CHANGELOG.md +++ b/PREVIEW-CHANGELOG.md @@ -1,15 +1,5 @@ # Changelog -## 0.2.14 - -### Preview features - -- Expose `toolchain-preference` as a CLI and configuration file option ([#4424](https://github.com/astral-sh/uv/pull/4424)) -- Improve handling of command arguments in `uv run` and `uv tool run` ([#4404](https://github.com/astral-sh/uv/pull/4404)) -- Add `tool.uv.sources` support for `uv add` ([#4406](https://github.com/astral-sh/uv/pull/4406)) -- Use correct lock path for workspace dependencies ([#4421](https://github.com/astral-sh/uv/pull/4421)) -- Filter out sibling dependencies in resolver forks ([#4415](https://github.com/astral-sh/uv/pull/4415)) - ## 0.2.13 ### Preview features @@ -136,6 +126,7 @@ + ## 0.2.3 ### Preview features @@ -146,6 +137,7 @@ + ## 0.2.1 ### Preview features @@ -182,6 +174,7 @@ + ## 0.1.43 ### Preview features @@ -203,6 +196,7 @@ + ## 0.1.40 ### Preview features diff --git a/README.md b/README.md index 683961dc1..dfc579dde 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.13/install.sh | sh +powershell -c "irm https://astral.sh/uv/0.2.13/install.ps1 | iex" # With pip. pip install uv diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index ca139bc81..fecfea2f3 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.13" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 7d9df83f6..1521d4fd0 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.13" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index 323c82383..c55563387 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.14" +version = "0.2.13" 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"