Bump version to v0.2.1 (#3763)

This commit is contained in:
Charlie Marsh 2024-05-22 16:05:17 -04:00 committed by GitHub
parent dc4f63d2e5
commit 1fc71ea736
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 12 additions and 6 deletions

View file

@ -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:

4
Cargo.lock generated
View file

@ -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"

View file

@ -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 }

View file

@ -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 }

View file

@ -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"