Bump version to v0.2.6 (#3991)

This commit is contained in:
Charlie Marsh 2024-06-03 13:40:28 -04:00 committed by GitHub
parent 1ffe18d861
commit a589ad5066
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 23 additions and 5 deletions

View File

@ -1,5 +1,23 @@
# Changelog
## 0.2.6
### Enhancements
- Support PEP 508 requirements for editables ([#3946](https://github.com/astral-sh/uv/pull/3946))
- Discard fragments when parsing unnamed URLs ([#3940](https://github.com/astral-sh/uv/pull/3940))
- Port all Git functionality to use Git CLI ([#3833](https://github.com/astral-sh/uv/pull/3833))
- Use statically linked C runtime on Windows ([#3966](https://github.com/astral-sh/uv/pull/3966))
### Bug fixes
- Disable concurrent progress bars in Jupyter Notebooks ([#3890](https://github.com/astral-sh/uv/pull/3890))
- Initialize multi-progress state before individual bars ([#3901](https://github.com/astral-sh/uv/pull/3901))
- Add missing `i686` alias for `x86` ([#3899](https://github.com/astral-sh/uv/pull/3899))
- Add missing `ppc64le` alias for `powerpc64le` ([#3963](https://github.com/astral-sh/uv/pull/3963))
- Fix reference to `--python-version` patch behavior ([#3989](https://github.com/astral-sh/uv/pull/3989))
- Avoid race condition in `OnceMap` ([#3987](https://github.com/astral-sh/uv/pull/3987))
## 0.2.5
### Enhancements

4
Cargo.lock generated
View File

@ -4367,7 +4367,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.2.5"
version = "0.2.6"
dependencies = [
"anstream",
"anyhow",
@ -4960,7 +4960,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.2.5"
version = "0.2.6"
[[package]]
name = "uv-virtualenv"

View File

@ -1,6 +1,6 @@
[package]
name = "uv-version"
version = "0.2.5"
version = "0.2.6"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }

View File

@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.2.5"
version = "0.2.6"
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.5"
version = "0.2.6"
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"