Skip to content

Commit

Permalink
Bump version to 0.2.17 (#4573)
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jun 26, 2024
1 parent bbbe1f3 commit 2eb1e66
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 13 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.2.17

### Bug fixes

- Avoid enforcing extra-only constraints ([#4570](https://github.com/astral-sh/uv/pull/4570))

## 0.2.16

### Enhancements
Expand Down Expand Up @@ -296,7 +302,7 @@ requested version, skipping interpreters that are broken or do not satisfy the r

Additionally, uv now allows requests for interpreter implementations such as `pypy` and `cpython`. For example,
the request `--python cpython` will ignore a `python` executable that's implemented by `pypy`. These requests may
also include a version, e.g., `--python [email protected]`. By default, uv will accept *any* interpreter implementation.
also include a version, e.g., `--python [email protected]`. By default, uv will accept _any_ interpreter implementation.

In summary, the following Python interpreter requests are now allowed:

Expand All @@ -314,7 +320,7 @@ To align the user expectations, uv now respects the interpreter that starts it.
now prefer the `python` interpreter that was used to start uv instead of searching for a virtual environment.

We now check if discovered interpreters are virtual environments. This means that setting `VIRTUAL_ENV` to a Python
installation directory that is *not* a virtual environment will no longer work. Instead, use `--system` or `--python <path>`
installation directory that is _not_ a virtual environment will no longer work. Instead, use `--system` or `--python <path>`
to request the interpreter.

### Enhancements
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions PREVIEW-CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.2.17

### Preview features

- Add `--extra` to `uv add` and enable fine grained updates ([#4566](https://github.com/astral-sh/uv/pull/4566))

## 0.2.16

### Preview features
Expand Down Expand Up @@ -155,7 +161,6 @@

<!-- No changes -->


## 0.2.3

### Preview features
Expand All @@ -166,7 +171,6 @@

<!-- No changes -->


## 0.2.1

### Preview features
Expand Down Expand Up @@ -203,7 +207,6 @@

<!-- No changes -->


## 0.1.43

### Preview features
Expand All @@ -225,7 +228,6 @@

<!-- No changes -->


## 0.1.40

### Preview features
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ curl -LsSf https://astral.sh/uv/install.sh | sh
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"

# For a specific version.
curl -LsSf https://astral.sh/uv/0.2.16/install.sh | sh
powershell -c "irm https://astral.sh/uv/0.2.16/install.ps1 | iex"
curl -LsSf https://astral.sh/uv/0.2.17/install.sh | sh
powershell -c "irm https://astral.sh/uv/0.2.17/install.ps1 | iex"

# With pip.
pip install uv
Expand Down
2 changes: 1 addition & 1 deletion crates/uv-version/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uv-version"
version = "0.2.16"
version = "0.2.17"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/uv/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "uv"
version = "0.2.16"
version = "0.2.17"
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "uv"
version = "0.2.16"
version = "0.2.17"
description = "An extremely fast Python package installer and resolver, written in Rust."
authors = [{ name = "Astral Software Inc.", email = "[email protected]" }]
requires-python = ">=3.8"
Expand Down

0 comments on commit 2eb1e66

Please sign in to comment.