mirror of https://github.com/astral-sh/uv
Bump version to v0.1.12 (#2051)
This commit is contained in:
parent
9328b3c2ab
commit
f68b2d1d5e
19
CHANGELOG.md
19
CHANGELOG.md
|
|
@ -1,5 +1,24 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 0.1.12
|
||||||
|
|
||||||
|
### CLI
|
||||||
|
|
||||||
|
- Add a `--python` flag to allow installation into arbitrary Python interpreters ([#2000](https://github.com/astral-sh/uv/pull/2000))
|
||||||
|
- Add a `--system` flag for opt-in non-virtualenv installs ([#2046](https://github.com/astral-sh/uv/pull/2046))
|
||||||
|
|
||||||
|
### Enhancements
|
||||||
|
|
||||||
|
- Add a `--pre` alias for `--prerelease=allow` ([#2049](https://github.com/astral-sh/uv/pull/2049))
|
||||||
|
- Enable `freeze` and `list` to introspect non-virtualenv Pythons ([#2033](https://github.com/astral-sh/uv/pull/2033))
|
||||||
|
- Support environment variables in index URLs in requirements files ([#2036](https://github.com/astral-sh/uv/pull/2036))
|
||||||
|
- Add `--exclude-editable` and `--exclude` args to `uv pip list` ([#1985](https://github.com/astral-sh/uv/pull/1985))
|
||||||
|
- Always remove color codes from output file ([#2018](https://github.com/astral-sh/uv/pull/2018))
|
||||||
|
- Support recursive extras in direct `pyproject.toml` files ([#1990](https://github.com/astral-sh/uv/pull/1990))
|
||||||
|
- Un-cache editable requirements with dynamic metadata ([#2029](https://github.com/astral-sh/uv/pull/2029))
|
||||||
|
- Use a non-local lock file for locking system interpreters ([#2045](https://github.com/astral-sh/uv/pull/2045))
|
||||||
|
- Surface the `EXTERNALLY-MANAGED` message to users ([#2032](https://github.com/astral-sh/uv/pull/2032))
|
||||||
|
|
||||||
## 0.1.11
|
## 0.1.11
|
||||||
|
|
||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
|
||||||
|
|
@ -4133,7 +4133,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anstream",
|
"anstream",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
|
|
|
||||||
11
README.md
11
README.md
|
|
@ -174,10 +174,13 @@ its own. For example, setting `VIRTUAL_ENV=/path/to/venv` will cause uv to insta
|
||||||
`/path/to/venv`, no matter where uv is installed.
|
`/path/to/venv`, no matter where uv is installed.
|
||||||
|
|
||||||
Finally, uv can also install into non-virtual environments by providing a `--python` argument to
|
Finally, uv can also install into non-virtual environments by providing a `--python` argument to
|
||||||
`pip sync` or `pip install`. For example, `uv pip install --python=/path/to/python` will install
|
`uv pip sync` or `uv pip install`. For example, `uv pip install --python=/path/to/python` will
|
||||||
into the environment linked to the `/path/to/python` interpreter. Though we generally recommend the
|
install into the environment linked to the `/path/to/python` interpreter.
|
||||||
use of virtual environments for dependency management, this feature can be useful for installing
|
|
||||||
into system Python installations in continuous integration or containerized environments.
|
For convenience, `uv pip install --system` will install into the system Python environment, as an
|
||||||
|
approximate shorthand for, e.g., `uv pip install --python=$(which python3)`. Though we generally
|
||||||
|
recommend the use of virtual environments for dependency management, `--system` is intended to
|
||||||
|
enable the use of `uv` in continuous integration and containerized environments.
|
||||||
|
|
||||||
### Git authentication
|
### Git authentication
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
edition = { workspace = true }
|
edition = { workspace = true }
|
||||||
rust-version = { workspace = true }
|
rust-version = { workspace = true }
|
||||||
homepage = { workspace = true }
|
homepage = { workspace = true }
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "uv"
|
name = "uv"
|
||||||
version = "0.1.11"
|
version = "0.1.12"
|
||||||
description = "An extremely fast Python package installer and resolver, written in Rust."
|
description = "An extremely fast Python package installer and resolver, written in Rust."
|
||||||
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
||||||
requires-python = ">=3.8"
|
requires-python = ">=3.8"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue