Bump version to v0.2.7 (#4060)

This commit is contained in:
Charlie Marsh
2024-06-05 14:25:25 -04:00
committed by GitHub
parent 191f9556b7
commit a241f148de
5 changed files with 23 additions and 5 deletions
+18
View File
@@ -1,5 +1,23 @@
# Changelog
## 0.2.7
### CLI
- Support `NO_COLOR` and `FORCE_COLOR` environment variables ([#3979](https://github.com/astral-sh/uv/pull/3979))
### Performance
- Avoid building packages with dynamic versions ([#4058](https://github.com/astral-sh/uv/pull/4058))
- Avoid work-stealing in bytecode compilation ([#4004](https://github.com/astral-sh/uv/pull/4004))
### Bug fixes
- Avoid dropping `pip sync` requirements with markers ([#4051](https://github.com/astral-sh/uv/pull/4051))
- Bias towards local directories for bare editable requirements ([#3995](https://github.com/astral-sh/uv/pull/3995))
- Preserve fragments when applying verbatim redirects ([#4038](https://github.com/astral-sh/uv/pull/4038))
- Avoid 'are incompatible' for singular bounded versions ([#4003](https://github.com/astral-sh/uv/pull/4003))
## 0.2.6
### Enhancements
Generated
+2 -2
View File
@@ -4367,7 +4367,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.2.6"
version = "0.2.7"
dependencies = [
"anstream",
"anyhow",
@@ -4963,7 +4963,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.2.6"
version = "0.2.7"
[[package]]
name = "uv-virtualenv"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-version"
version = "0.2.6"
version = "0.2.7"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.2.6"
version = "0.2.7"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "uv"
version = "0.2.6"
version = "0.2.7"
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"