Bump version to v0.1.40 (#3433)

This commit is contained in:
Charlie Marsh
2024-05-07 13:29:29 -04:00
committed by GitHub
parent f8a7813add
commit 7fe9f0a3dd
5 changed files with 34 additions and 5 deletions
+29
View File
@@ -1,5 +1,34 @@
# Changelog
## 0.1.40
### Enhancements
- Add `--allow-existing` to overwrite existing virtualenv ([#2548](https://github.com/astral-sh/uv/pull/2548))
- Respect and enable uninstalls of legacy editables (`.egg-link`) ([#3415](https://github.com/astral-sh/uv/pull/3415))
- Respect and enable uninstalls of existing `.egg-info` packages ([#3380](https://github.com/astral-sh/uv/pull/3380))
### CLI
- Accept `--no-upgrade`, `--no-refresh`, etc. on the CLI ([#3328](https://github.com/astral-sh/uv/pull/3328))
### Configuration
- Expose `UV_NO_BUILD_ISOLATION` as environment variable ([#3318](https://github.com/astral-sh/uv/pull/3318))
- Expose `UV_PYTHON` as an environment variable ([#3284](https://github.com/astral-sh/uv/pull/3284))
- Expose `UV_LINK_MODE` as environment variable ([#3315](https://github.com/astral-sh/uv/pull/3315))
- Add `UV_CUSTOM_COMPILE_COMMAND` to environment variable docs ([#3382](https://github.com/astral-sh/uv/pull/3382))
### Bug fixes
- Ignore 401 HTTP responses with multiple indexes ([#3292](https://github.com/astral-sh/uv/pull/3292))
- Avoid panic for file URLs ([#3306](https://github.com/astral-sh/uv/pull/3306))
- Quote version parse errors consistently ([#3325](https://github.com/astral-sh/uv/pull/3325))
- Detect current environment when `uv` is invoked from within a virtualenv ([#3379](https://github.com/astral-sh/uv/pull/3379))
- Unset target when creating virtual environments ([#3362](https://github.com/astral-sh/uv/pull/3362))
- Update activation scripts from virtualenv ([#3376](https://github.com/astral-sh/uv/pull/3376))
- Use canonical URLs in satisfaction check ([#3373](https://github.com/astral-sh/uv/pull/3373))
## 0.1.39
### Enhancements
Generated
+2 -2
View File
@@ -4531,7 +4531,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.1.39"
version = "0.1.40"
dependencies = [
"anstream",
"anyhow",
@@ -5115,7 +5115,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.1.39"
version = "0.1.40"
[[package]]
name = "uv-virtualenv"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-version"
version = "0.1.39"
version = "0.1.40"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.1.39"
version = "0.1.40"
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.1.39"
version = "0.1.40"
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"