From 1fc71ea73624c8c1094567fc432c3b42979f62a8 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Wed, 22 May 2024 16:05:17 -0400 Subject: [PATCH] Bump version to v0.2.1 (#3763) --- CHANGELOG.md | 8 +++++++- Cargo.lock | 4 ++-- crates/uv-version/Cargo.toml | 2 +- crates/uv/Cargo.toml | 2 +- pyproject.toml | 2 +- 5 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23328f950..e95318f3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.2.1 + +### Bug fixes + +- Re-added the dynamically-linked Linux binary ([#3762](https://github.com/astral-sh/uv/pull/3762)) + ## 0.2.0 Starting with this release, uv will use the **minor** version tag to indicate breaking changes. @@ -17,7 +23,7 @@ requested version, skipping interpreters that are broken or do not satisfy the r Additionally, uv now allows requests for interpreter implementations such as `pypy` and `cpython`. For example, the request `--python cpython` will ignore a `python` executable that's implemented by `pypy`. These requests may -also include a version, e.g., `--python pypy@3.10`. By default, uv will accept _any_ interpreter implementation. +also include a version, e.g., `--python pypy@3.10`. By default, uv will accept *any* interpreter implementation. In summary, the following Python interpreter requests are now allowed: diff --git a/Cargo.lock b/Cargo.lock index 624f87b56..02be89306 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4474,7 +4474,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0" [[package]] name = "uv" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anstream", "anyhow", @@ -5057,7 +5057,7 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.2.0" +version = "0.2.1" [[package]] name = "uv-virtualenv" diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 376748a29..f6b849973 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.2.0" +version = "0.2.1" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 27dd9b7af..6de38b0ff 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.2.0" +version = "0.2.1" edition = { workspace = true } rust-version = { workspace = true } homepage = { workspace = true } diff --git a/pyproject.toml b/pyproject.toml index b390bc98f..515df2272 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.2.0" +version = "0.2.1" 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"