Bump version to v0.3.1 (#6385)

This commit is contained in:
Charlie Marsh 2024-08-21 19:07:50 -04:00 committed by GitHub
parent 19a7f3ec07
commit be17d132ad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 204 additions and 167 deletions

File diff suppressed because it is too large Load diff

4
Cargo.lock generated
View file

@ -4498,7 +4498,7 @@ checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
[[package]] [[package]]
name = "uv" name = "uv"
version = "0.3.0" version = "0.3.1"
dependencies = [ dependencies = [
"anstream", "anstream",
"anyhow", "anyhow",
@ -5248,7 +5248,7 @@ dependencies = [
[[package]] [[package]]
name = "uv-version" name = "uv-version"
version = "0.3.0" version = "0.3.1"
[[package]] [[package]]
name = "uv-virtualenv" name = "uv-virtualenv"

View file

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

View file

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

View file

@ -34,11 +34,11 @@ By default, uv is installed to `~/.cargo/bin`.
Request a specific version by including it in the URL: Request a specific version by including it in the URL:
```console title="macOS and Linux" ```console title="macOS and Linux"
$ curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh $ curl -LsSf https://astral.sh/uv/0.3.1/install.sh | sh
``` ```
```console title="Windows" ```console title="Windows"
$ powershell -c "irm https://astral.sh/uv/0.3.0/install.ps1 | iex" $ powershell -c "irm https://astral.sh/uv/0.3.1/install.ps1 | iex"
``` ```
!!! tip !!! tip

View file

@ -41,13 +41,13 @@ Note this requires `curl` to be available.
In either case, it is best practice to pin to a specific uv version, e.g., with: In either case, it is best practice to pin to a specific uv version, e.g., with:
```dockerfile ```dockerfile
COPY --from=ghcr.io/astral-sh/uv:0.3.0 /uv /bin/uv COPY --from=ghcr.io/astral-sh/uv:0.3.1 /uv /bin/uv
``` ```
Or, with the installer: Or, with the installer:
```dockerfile ```dockerfile
ADD https://astral.sh/uv/0.3.0/install.sh /uv-installer.sh ADD https://astral.sh/uv/0.3.1/install.sh /uv-installer.sh
``` ```
## Installing a project ## Installing a project

View file

@ -76,7 +76,7 @@ It is considered best practice to pin to a specific uv version, e.g., with:
- name: Set up uv - name: Set up uv
# Install a specific uv version using the installer # Install a specific uv version using the installer
run: curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh run: curl -LsSf https://astral.sh/uv/0.3.1/install.sh | sh
``` ```
=== "macOS" === "macOS"
@ -94,7 +94,7 @@ It is considered best practice to pin to a specific uv version, e.g., with:
- name: Set up uv - name: Set up uv
# Install a specific uv version using the installer # Install a specific uv version using the installer
run: curl -LsSf https://astral.sh/uv/0.3.0/install.sh | sh run: curl -LsSf https://astral.sh/uv/0.3.1/install.sh | sh
``` ```
=== "Windows" === "Windows"
@ -112,7 +112,7 @@ It is considered best practice to pin to a specific uv version, e.g., with:
- name: Set up uv - name: Set up uv
# Install a specific uv version using the installer # Install a specific uv version using the installer
run: irm https://astral.sh/uv/0.3.0/install.ps1 | iex run: irm https://astral.sh/uv/0.3.1/install.ps1 | iex
shell: powershell shell: powershell
``` ```

View file

@ -8,7 +8,7 @@ To compile requirements via pre-commit, add the following to the `.pre-commit-co
```yaml title=".pre-commit-config.yaml" ```yaml title=".pre-commit-config.yaml"
- repo: https://github.com/astral-sh/uv-pre-commit - repo: https://github.com/astral-sh/uv-pre-commit
# uv version. # uv version.
rev: 0.3.0 rev: 0.3.1
hooks: hooks:
# Compile requirements # Compile requirements
- id: pip-compile - id: pip-compile
@ -20,7 +20,7 @@ To compile alternative files, modify `args` and `files`:
```yaml title=".pre-commit-config.yaml" ```yaml title=".pre-commit-config.yaml"
- repo: https://github.com/astral-sh/uv-pre-commit - repo: https://github.com/astral-sh/uv-pre-commit
# uv version. # uv version.
rev: 0.3.0 rev: 0.3.1
hooks: hooks:
# Compile requirements # Compile requirements
- id: pip-compile - id: pip-compile
@ -33,7 +33,7 @@ To run the hook over multiple files at the same time:
```yaml title=".pre-commit-config.yaml" ```yaml title=".pre-commit-config.yaml"
- repo: https://github.com/astral-sh/uv-pre-commit - repo: https://github.com/astral-sh/uv-pre-commit
# uv version. # uv version.
rev: 0.3.0 rev: 0.3.1
hooks: hooks:
# Compile requirements # Compile requirements
- id: pip-compile - id: pip-compile

View file

@ -4,7 +4,7 @@ build-backend = "maturin"
[project] [project]
name = "uv" name = "uv"
version = "0.3.0" version = "0.3.1"
description = "An extremely fast Python package and project manager, written in Rust." description = "An extremely fast Python package and project manager, 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"