Skip to content

Commit 043d726

Browse files
Bump version to v0.1.15 (#2217)
1 parent 34acfe4 commit 043d726

File tree

5 files changed

+32
-11
lines changed

5 files changed

+32
-11
lines changed

CHANGELOG.md

+27-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## 0.1.15
4+
5+
### Enhancements
6+
7+
- Add a `--compile` option to `install` to enable bytecode compilation ([#2086](https://github.com/astral-sh/uv/pull/2086))
8+
- Expose the `--exclude-newer` flag to limit candidate packages based on date ([#2166](https://github.com/astral-sh/uv/pull/2166))
9+
- Add `uv` version to user agent ([#2136](https://github.com/astral-sh/uv/pull/2136))
10+
11+
### Bug fixes
12+
13+
- Set `.metadata` suffix on URL path ([#2123](https://github.com/astral-sh/uv/pull/2123))
14+
- Fallback to non-range requests when HEAD returns 404 ([#2186](https://github.com/astral-sh/uv/pull/2186))
15+
- Allow direct URLs in optional dependencies in editables ([#2206](https://github.com/astral-sh/uv/pull/2206))
16+
- Allow empty values in WHEEL files ([#2170](https://github.com/astral-sh/uv/pull/2170))
17+
- Avoid Windows Store shims in `--python python3`-like invocations ([#2212](https://github.com/astral-sh/uv/pull/2212))
18+
- Expand Windows shim detection to include `python3.12.exe` ([#2209](https://github.com/astral-sh/uv/pull/2209))
19+
- HTML-decode URLs in HTML indexes ([#2215](https://github.com/astral-sh/uv/pull/2215))
20+
- Make direct dependency detection respect markers ([#2207](https://github.com/astral-sh/uv/pull/2207))
21+
- Respect `py --list-paths` fallback in `--python python3` invocations on Windows ([#2214](https://github.com/astral-sh/uv/pull/2214))
22+
- Respect local freshness when auditing installed environment ([#2169](https://github.com/astral-sh/uv/pull/2169))
23+
- Respect markers on URL dependencies in editables ([#2176](https://github.com/astral-sh/uv/pull/2176))
24+
- Respect nested editable requirements in parser ([#2204](https://github.com/astral-sh/uv/pull/2204))
25+
- Run Windows against Python 3.13 ([#2171](https://github.com/astral-sh/uv/pull/2171))
26+
- Error when editables don't match `Requires-Python` ([#2194](https://github.com/astral-sh/uv/pull/2194))
27+
328
## 0.1.14
429

530
### Enhancements
@@ -33,12 +58,8 @@
3358

3459
### Bug fixes
3560

36-
- Prioritize `PATH` over `py --list-paths` in Windows selection ([#2057](https://github.com/astral-sh/uv/pull/2057)).
37-
This fixes an issue in which the `--system` flag would not work correctly on Windows in GitHub
38-
Actions.
39-
- Avoid canonicalizing user-provided interpreters ([#2072](https://github.com/astral-sh/uv/pull/2072)).
40-
This fixes an issue in which the `--python` flag would not work correctly with pyenv and other
41-
interpreters.
61+
- Prioritize `PATH` over `py --list-paths` in Windows selection ([#2057](https://github.com/astral-sh/uv/pull/2057)). This fixes an issue in which the `--system` flag would not work correctly on Windows in GitHub Actions.
62+
- Avoid canonicalizing user-provided interpreters ([#2072](https://github.com/astral-sh/uv/pull/2072)). This fixes an issue in which the `--python` flag would not work correctly with pyenv and other interpreters.
4263
- Allow pre-releases for requirements in constraints files ([#2069](https://github.com/astral-sh/uv/pull/2069))
4364
- Avoid truncating EXTERNALLY-MANAGED error message ([#2073](https://github.com/astral-sh/uv/pull/2073))
4465
- Extend activation highlighting to entire `venv` command ([#2070](https://github.com/astral-sh/uv/pull/2070))

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/uv-version/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv-version"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

crates/uv/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "uv"
3-
version = "0.1.14"
3+
version = "0.1.15"
44
edition = { workspace = true }
55
rust-version = { workspace = true }
66
homepage = { workspace = true }

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "uv"
7-
version = "0.1.14"
7+
version = "0.1.15"
88
description = "An extremely fast Python package installer and resolver, written in Rust."
99
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)