Bump version to 0.1.36 (#3193)

This commit is contained in:
Zanie Blue 2024-04-22 13:55:55 -05:00 committed by GitHub
parent 04eaee7e19
commit 78cd9991d7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 27 additions and 5 deletions

View File

@ -1,5 +1,27 @@
# Changelog
## 0.1.36
### Enhancements
- Add support for embedded Python on Windows ([#3161](https://github.com/astral-sh/uv/pull/3161))
- Add Docker image publishing to release pipeline ([#3155](https://github.com/astral-sh/uv/pull/3155))
### Configuration
- Add `UV_CONSTRAINT` environment variable to provide value for `--constraint` ([#3162](https://github.com/astral-sh/uv/pull/3162))
### Bug fixes
- Avoid waiting for metadata for `--no-deps` editables ([#3188](https://github.com/astral-sh/uv/pull/3188))
- Fix `venvlauncher.exe` reference in venv creation ([#3160](https://github.com/astral-sh/uv/pull/3160))
- Fix authentication for URLs with a shared realm ([#3130](https://github.com/astral-sh/uv/pull/3130))
- Restrict observed requirements to direct when `--no-deps` is specified ([#3191](https://github.com/astral-sh/uv/pull/3191))
### Documentation
- Add a versioning policy to the README ([#3151](https://github.com/astral-sh/uv/pull/3151))
## 0.1.35
### Enhancements

4
Cargo.lock generated
View File

@ -4398,7 +4398,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.1.35"
version = "0.1.36"
dependencies = [
"anstream",
"anyhow",
@ -4994,7 +4994,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.1.35"
version = "0.1.36"
[[package]]
name = "uv-virtualenv"

View File

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

View File

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

View File

@ -4,7 +4,7 @@ build-backend = "maturin"
[project]
name = "uv"
version = "0.1.35"
version = "0.1.36"
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"