Bump version to 0.1.10 (#1923)

This commit is contained in:
Zanie Blue 2024-02-23 11:40:36 -06:00 committed by GitHub
parent 62023ead49
commit daa8565a75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 17 additions and 3 deletions

View file

@ -1,5 +1,19 @@
# Changelog
## 0.1.10
### Enhancements
- Omit `--find-links` from annotation header unless requested ([#1898](https://github.com/astral-sh/uv/pull/1898))
- Write to stdout when `--output-file` is present ([#1892](https://github.com/astral-sh/uv/pull/1892))
### Bug fixes
- Retain authentication when making range requests ([#1902](https://github.com/astral-sh/uv/pull/1902))
- Fix uv-created venv detection ([#1908](https://github.com/astral-sh/uv/pull/1908))
- Fix Windows `py` failure from spurious stderr ([#1885](https://github.com/astral-sh/uv/pull/1885))
- Ignore Python 2 installations when querying for interpreters ([#1905](https://github.com/astral-sh/uv/pull/1905))
## 0.1.9
### Enhancements

2
Cargo.lock generated
View file

@ -4128,7 +4128,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
[[package]]
name = "uv"
version = "0.1.9"
version = "0.1.10"
dependencies = [
"anstream",
"anyhow",

View file

@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.1.9"
version = "0.1.10"
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.9"
version = "0.1.10"
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"