mirror of
https://github.com/astral-sh/uv
synced 2026-01-21 13:30:11 -05:00
Bump version to 0.9.20 (#17256)
## Summary In #17254, I failed to bump the versions of the various internal crates, so need to re-release.
This commit is contained in:
19
CHANGELOG.md
19
CHANGELOG.md
@@ -2,6 +2,13 @@
|
||||
|
||||
<!-- prettier-ignore-start -->
|
||||
|
||||
|
||||
## 0.9.20
|
||||
|
||||
Released on 2025-12-29.
|
||||
|
||||
This is a re-release of 0.9.20, with internal crate versions incremented to enable publishing to crates.io.
|
||||
|
||||
## 0.9.19
|
||||
|
||||
Released on 2025-12-29.
|
||||
@@ -535,25 +542,25 @@ There are no breaking changes to [`uv_build`](https://docs.astral.sh/uv/concepts
|
||||
### Breaking changes
|
||||
|
||||
- **Python 3.14 is now the default stable version**
|
||||
|
||||
|
||||
The default Python version has changed from 3.13 to 3.14. This applies to Python version installation when no Python version is requested, e.g., `uv python install`. By default, uv will use the system Python version if present, so this may not cause changes to general use of uv. For example, if Python 3.13 is installed already, then `uv venv` will use that version. If no Python versions are installed on a machine and automatic downloads are enabled, uv will now use 3.14 instead of 3.13, e.g., for `uv venv` or `uvx python`. This change will not affect users who are using a `.python-version` file to pin to a specific Python version.
|
||||
- **Allow use of free-threaded variants in Python 3.14+ without explicit opt-in** ([#16142](https://github.com/astral-sh/uv/pull/16142))
|
||||
|
||||
|
||||
Previously, free-threaded variants of Python were considered experimental and required explicit opt-in (i.e., with `3.14t`) for usage. Now uv will allow use of free-threaded Python 3.14+ interpreters without explicit selection. The GIL-enabled build of Python will still be preferred, e.g., when performing an installation with `uv python install 3.14`. However, e.g., if a free-threaded interpreter comes before a GIL-enabled build on the `PATH`, it will be used. This change does not apply to free-threaded Python 3.13 interpreters, which will continue to require opt-in.
|
||||
- **Use Python 3.14 stable Docker images** ([#16150](https://github.com/astral-sh/uv/pull/16150))
|
||||
|
||||
|
||||
Previously, the Python 3.14 images had an `-rc` suffix, e.g., `python:3.14-rc-alpine` or
|
||||
`python:3.14-rc-trixie`. Now, the `-rc` suffix has been removed to match the stable
|
||||
[upstream images](https://hub.docker.com/_/python). The `-rc` images tags will no longer be
|
||||
updated. This change should not break existing workflows.
|
||||
- **Upgrade Alpine Docker image to Alpine 3.22**
|
||||
|
||||
|
||||
Previously, the `uv:alpine` Docker image was based on Alpine 3.21. Now, this image is based on Alpine 3.22. The previous image can be recovered with `uv:alpine3.21` and will continue to be updated until a future release.
|
||||
- **Upgrade Debian Docker images to Debian 13 "Trixie"**
|
||||
|
||||
|
||||
Previously, the `uv:debian` and `uv:debian-slim` Docker images were based on Debian 12 "Bookworm". Now, these images are based on Debian 13 "Trixie". The previous images can be recovered with `uv:bookworm` and `uv:bookworm-slim` and will continue to be updated until a future release.
|
||||
- **Fix incorrect output path when a trailing `/` is used in `uv build`** ([#15133](https://github.com/astral-sh/uv/pull/15133))
|
||||
|
||||
|
||||
When using `uv build` in a workspace, the artifacts are intended to be written to a `dist` directory in the workspace root. A bug caused workspace root determination to fail when the input path included a trailing `/` causing the `dist` directory to be placed in the child directory. This bug has been fixed in this release. For example, `uv build child/` is used, the output path will now be in `<workspace root>/dist/` rather than `<workspace root>/child/dist/`.
|
||||
|
||||
### Python
|
||||
|
||||
124
Cargo.lock
generated
124
Cargo.lock
generated
@@ -5406,7 +5406,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv"
|
||||
version = "0.9.19"
|
||||
version = "0.9.20"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
@@ -5525,7 +5525,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-auth"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arcstr",
|
||||
@@ -5568,7 +5568,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-bench"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"codspeed-criterion-compat",
|
||||
@@ -5595,7 +5595,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-bin-install"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"astral-reqwest-middleware",
|
||||
"astral-reqwest-retry",
|
||||
@@ -5618,7 +5618,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-build"
|
||||
version = "0.9.19"
|
||||
version = "0.9.20"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
@@ -5630,7 +5630,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-build-backend"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"astral-version-ranges",
|
||||
"base64 0.22.1",
|
||||
@@ -5670,7 +5670,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-build-frontend"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"fs-err",
|
||||
@@ -5708,7 +5708,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-cache"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"fs-err",
|
||||
@@ -5734,7 +5734,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-cache-info"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"fs-err",
|
||||
@@ -5751,7 +5751,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-cache-key"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"hex",
|
||||
"memchr",
|
||||
@@ -5763,7 +5763,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-cli"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
@@ -5795,7 +5795,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-client"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
@@ -5858,7 +5858,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-configuration"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
@@ -5887,14 +5887,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-console"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"console 0.16.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-dev"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
@@ -5943,7 +5943,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-dirs"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"assert_fs",
|
||||
"etcetera",
|
||||
@@ -5955,7 +5955,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-dispatch"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
@@ -5987,7 +5987,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-distribution"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
@@ -6036,7 +6036,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-distribution-filename"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"memchr",
|
||||
@@ -6053,7 +6053,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-distribution-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-version-ranges",
|
||||
@@ -6093,7 +6093,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-extract"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"astral-tokio-tar",
|
||||
"astral_async_zip",
|
||||
@@ -6123,14 +6123,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-flags"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"bitflags 2.9.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-fs"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"backon",
|
||||
"dunce",
|
||||
@@ -6154,7 +6154,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-git"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
@@ -6180,7 +6180,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-git-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"thiserror 2.0.17",
|
||||
@@ -6192,7 +6192,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-globfilter"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"fs-err",
|
||||
@@ -6209,7 +6209,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-install-wheel"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
@@ -6249,7 +6249,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-installer"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-channel",
|
||||
@@ -6290,7 +6290,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-keyring"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"byteorder",
|
||||
@@ -6307,7 +6307,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-logging"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"jiff",
|
||||
"owo-colors",
|
||||
@@ -6317,7 +6317,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-macros"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
@@ -6327,7 +6327,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-metadata"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"astral_async_zip",
|
||||
"fs-err",
|
||||
@@ -6344,7 +6344,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-normalize"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"rkyv",
|
||||
"schemars",
|
||||
@@ -6354,7 +6354,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-once-map"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"dashmap",
|
||||
"futures",
|
||||
@@ -6363,14 +6363,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-options-metadata"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-pep440"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"astral-version-ranges",
|
||||
"indoc",
|
||||
@@ -6384,7 +6384,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-pep508"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-version-ranges",
|
||||
@@ -6413,7 +6413,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-performance-memory-allocator"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"mimalloc",
|
||||
"tikv-jemallocator",
|
||||
@@ -6421,7 +6421,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-platform"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"goblin",
|
||||
@@ -6438,7 +6438,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-platform-tags"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"memchr",
|
||||
@@ -6451,7 +6451,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-preview"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"bitflags 2.9.4",
|
||||
"thiserror 2.0.17",
|
||||
@@ -6460,7 +6460,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-publish"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"ambient-id",
|
||||
"anstream",
|
||||
@@ -6502,7 +6502,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-pypi-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"hashbrown 0.16.1",
|
||||
@@ -6534,7 +6534,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-python"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
@@ -6596,7 +6596,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-redacted"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"ref-cast",
|
||||
"schemars",
|
||||
@@ -6607,7 +6607,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-requirements"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"configparser",
|
||||
@@ -6642,7 +6642,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-requirements-txt"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
@@ -6675,7 +6675,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-resolver"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-pubgrub",
|
||||
@@ -6740,7 +6740,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-scripts"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"indoc",
|
||||
@@ -6764,7 +6764,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-settings"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"fs-err",
|
||||
@@ -6799,7 +6799,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-shell"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"fs-err",
|
||||
@@ -6816,7 +6816,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-small-str"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"rkyv",
|
||||
@@ -6826,7 +6826,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-state"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"tempfile",
|
||||
@@ -6835,14 +6835,14 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-static"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"uv-macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-tool"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"pathdiff",
|
||||
@@ -6871,7 +6871,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-torch"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"either",
|
||||
@@ -6891,7 +6891,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-trampoline-builder"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
@@ -6908,7 +6908,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
@@ -6930,11 +6930,11 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-version"
|
||||
version = "0.9.19"
|
||||
version = "0.9.20"
|
||||
|
||||
[[package]]
|
||||
name = "uv-virtualenv"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"console 0.16.1",
|
||||
"fs-err",
|
||||
@@ -6956,7 +6956,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-warnings"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
@@ -6968,7 +6968,7 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "uv-workspace"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
|
||||
116
Cargo.toml
116
Cargo.toml
@@ -16,64 +16,64 @@ authors = ["uv"]
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[workspace.dependencies]
|
||||
uv-auth = { version = "0.0.8", path = "crates/uv-auth" }
|
||||
uv-bin-install = { version = "0.0.8", path = "crates/uv-bin-install" }
|
||||
uv-build-backend = { version = "0.0.8", path = "crates/uv-build-backend" }
|
||||
uv-build-frontend = { version = "0.0.8", path = "crates/uv-build-frontend" }
|
||||
uv-cache = { version = "0.0.8", path = "crates/uv-cache" }
|
||||
uv-cache-info = { version = "0.0.8", path = "crates/uv-cache-info" }
|
||||
uv-cache-key = { version = "0.0.8", path = "crates/uv-cache-key" }
|
||||
uv-cli = { version = "0.0.8", path = "crates/uv-cli" }
|
||||
uv-client = { version = "0.0.8", path = "crates/uv-client" }
|
||||
uv-configuration = { version = "0.0.8", path = "crates/uv-configuration" }
|
||||
uv-console = { version = "0.0.8", path = "crates/uv-console" }
|
||||
uv-dirs = { version = "0.0.8", path = "crates/uv-dirs" }
|
||||
uv-dispatch = { version = "0.0.8", path = "crates/uv-dispatch" }
|
||||
uv-distribution = { version = "0.0.8", path = "crates/uv-distribution" }
|
||||
uv-distribution-filename = { version = "0.0.8", path = "crates/uv-distribution-filename" }
|
||||
uv-distribution-types = { version = "0.0.8", path = "crates/uv-distribution-types" }
|
||||
uv-extract = { version = "0.0.8", path = "crates/uv-extract" }
|
||||
uv-flags = { version = "0.0.8", path = "crates/uv-flags" }
|
||||
uv-fs = { version = "0.0.8", path = "crates/uv-fs", features = ["serde", "tokio"] }
|
||||
uv-git = { version = "0.0.8", path = "crates/uv-git" }
|
||||
uv-git-types = { version = "0.0.8", path = "crates/uv-git-types" }
|
||||
uv-globfilter = { version = "0.0.8", path = "crates/uv-globfilter" }
|
||||
uv-install-wheel = { version = "0.0.8", path = "crates/uv-install-wheel", default-features = false }
|
||||
uv-installer = { version = "0.0.8", path = "crates/uv-installer" }
|
||||
uv-keyring = { version = "0.0.8", path = "crates/uv-keyring" }
|
||||
uv-logging = { version = "0.0.8", path = "crates/uv-logging" }
|
||||
uv-macros = { version = "0.0.8", path = "crates/uv-macros" }
|
||||
uv-metadata = { version = "0.0.8", path = "crates/uv-metadata" }
|
||||
uv-normalize = { version = "0.0.8", path = "crates/uv-normalize" }
|
||||
uv-once-map = { version = "0.0.8", path = "crates/uv-once-map" }
|
||||
uv-options-metadata = { version = "0.0.8", path = "crates/uv-options-metadata" }
|
||||
uv-performance-memory-allocator = { version = "0.0.8", path = "crates/uv-performance-memory-allocator" }
|
||||
uv-pep440 = { version = "0.0.8", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] }
|
||||
uv-pep508 = { version = "0.0.8", path = "crates/uv-pep508", features = ["non-pep508-extensions"] }
|
||||
uv-platform = { version = "0.0.8", path = "crates/uv-platform" }
|
||||
uv-platform-tags = { version = "0.0.8", path = "crates/uv-platform-tags" }
|
||||
uv-preview = { version = "0.0.8", path = "crates/uv-preview" }
|
||||
uv-publish = { version = "0.0.8", path = "crates/uv-publish" }
|
||||
uv-pypi-types = { version = "0.0.8", path = "crates/uv-pypi-types" }
|
||||
uv-python = { version = "0.0.8", path = "crates/uv-python" }
|
||||
uv-redacted = { version = "0.0.8", path = "crates/uv-redacted" }
|
||||
uv-requirements = { version = "0.0.8", path = "crates/uv-requirements" }
|
||||
uv-requirements-txt = { version = "0.0.8", path = "crates/uv-requirements-txt" }
|
||||
uv-resolver = { version = "0.0.8", path = "crates/uv-resolver" }
|
||||
uv-scripts = { version = "0.0.8", path = "crates/uv-scripts" }
|
||||
uv-settings = { version = "0.0.8", path = "crates/uv-settings" }
|
||||
uv-shell = { version = "0.0.8", path = "crates/uv-shell" }
|
||||
uv-small-str = { version = "0.0.8", path = "crates/uv-small-str" }
|
||||
uv-state = { version = "0.0.8", path = "crates/uv-state" }
|
||||
uv-static = { version = "0.0.8", path = "crates/uv-static" }
|
||||
uv-tool = { version = "0.0.8", path = "crates/uv-tool" }
|
||||
uv-torch = { version = "0.0.8", path = "crates/uv-torch" }
|
||||
uv-trampoline-builder = { version = "0.0.8", path = "crates/uv-trampoline-builder" }
|
||||
uv-types = { version = "0.0.8", path = "crates/uv-types" }
|
||||
uv-version = { version = "0.9.18", path = "crates/uv-version" }
|
||||
uv-virtualenv = { version = "0.0.8", path = "crates/uv-virtualenv" }
|
||||
uv-warnings = { version = "0.0.8", path = "crates/uv-warnings" }
|
||||
uv-workspace = { version = "0.0.8", path = "crates/uv-workspace" }
|
||||
uv-auth = { version = "0.0.9", path = "crates/uv-auth" }
|
||||
uv-bin-install = { version = "0.0.9", path = "crates/uv-bin-install" }
|
||||
uv-build-backend = { version = "0.0.9", path = "crates/uv-build-backend" }
|
||||
uv-build-frontend = { version = "0.0.9", path = "crates/uv-build-frontend" }
|
||||
uv-cache = { version = "0.0.9", path = "crates/uv-cache" }
|
||||
uv-cache-info = { version = "0.0.9", path = "crates/uv-cache-info" }
|
||||
uv-cache-key = { version = "0.0.9", path = "crates/uv-cache-key" }
|
||||
uv-cli = { version = "0.0.9", path = "crates/uv-cli" }
|
||||
uv-client = { version = "0.0.9", path = "crates/uv-client" }
|
||||
uv-configuration = { version = "0.0.9", path = "crates/uv-configuration" }
|
||||
uv-console = { version = "0.0.9", path = "crates/uv-console" }
|
||||
uv-dirs = { version = "0.0.9", path = "crates/uv-dirs" }
|
||||
uv-dispatch = { version = "0.0.9", path = "crates/uv-dispatch" }
|
||||
uv-distribution = { version = "0.0.9", path = "crates/uv-distribution" }
|
||||
uv-distribution-filename = { version = "0.0.9", path = "crates/uv-distribution-filename" }
|
||||
uv-distribution-types = { version = "0.0.9", path = "crates/uv-distribution-types" }
|
||||
uv-extract = { version = "0.0.9", path = "crates/uv-extract" }
|
||||
uv-flags = { version = "0.0.9", path = "crates/uv-flags" }
|
||||
uv-fs = { version = "0.0.9", path = "crates/uv-fs", features = ["serde", "tokio"] }
|
||||
uv-git = { version = "0.0.9", path = "crates/uv-git" }
|
||||
uv-git-types = { version = "0.0.9", path = "crates/uv-git-types" }
|
||||
uv-globfilter = { version = "0.0.9", path = "crates/uv-globfilter" }
|
||||
uv-install-wheel = { version = "0.0.9", path = "crates/uv-install-wheel", default-features = false }
|
||||
uv-installer = { version = "0.0.9", path = "crates/uv-installer" }
|
||||
uv-keyring = { version = "0.0.9", path = "crates/uv-keyring" }
|
||||
uv-logging = { version = "0.0.9", path = "crates/uv-logging" }
|
||||
uv-macros = { version = "0.0.9", path = "crates/uv-macros" }
|
||||
uv-metadata = { version = "0.0.9", path = "crates/uv-metadata" }
|
||||
uv-normalize = { version = "0.0.9", path = "crates/uv-normalize" }
|
||||
uv-once-map = { version = "0.0.9", path = "crates/uv-once-map" }
|
||||
uv-options-metadata = { version = "0.0.9", path = "crates/uv-options-metadata" }
|
||||
uv-performance-memory-allocator = { version = "0.0.9", path = "crates/uv-performance-memory-allocator" }
|
||||
uv-pep440 = { version = "0.0.9", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] }
|
||||
uv-pep508 = { version = "0.0.9", path = "crates/uv-pep508", features = ["non-pep508-extensions"] }
|
||||
uv-platform = { version = "0.0.9", path = "crates/uv-platform" }
|
||||
uv-platform-tags = { version = "0.0.9", path = "crates/uv-platform-tags" }
|
||||
uv-preview = { version = "0.0.9", path = "crates/uv-preview" }
|
||||
uv-publish = { version = "0.0.9", path = "crates/uv-publish" }
|
||||
uv-pypi-types = { version = "0.0.9", path = "crates/uv-pypi-types" }
|
||||
uv-python = { version = "0.0.9", path = "crates/uv-python" }
|
||||
uv-redacted = { version = "0.0.9", path = "crates/uv-redacted" }
|
||||
uv-requirements = { version = "0.0.9", path = "crates/uv-requirements" }
|
||||
uv-requirements-txt = { version = "0.0.9", path = "crates/uv-requirements-txt" }
|
||||
uv-resolver = { version = "0.0.9", path = "crates/uv-resolver" }
|
||||
uv-scripts = { version = "0.0.9", path = "crates/uv-scripts" }
|
||||
uv-settings = { version = "0.0.9", path = "crates/uv-settings" }
|
||||
uv-shell = { version = "0.0.9", path = "crates/uv-shell" }
|
||||
uv-small-str = { version = "0.0.9", path = "crates/uv-small-str" }
|
||||
uv-state = { version = "0.0.9", path = "crates/uv-state" }
|
||||
uv-static = { version = "0.0.9", path = "crates/uv-static" }
|
||||
uv-tool = { version = "0.0.9", path = "crates/uv-tool" }
|
||||
uv-torch = { version = "0.0.9", path = "crates/uv-torch" }
|
||||
uv-trampoline-builder = { version = "0.0.9", path = "crates/uv-trampoline-builder" }
|
||||
uv-types = { version = "0.0.9", path = "crates/uv-types" }
|
||||
uv-version = { version = "0.9.20", path = "crates/uv-version" }
|
||||
uv-virtualenv = { version = "0.0.9", path = "crates/uv-virtualenv" }
|
||||
uv-warnings = { version = "0.0.9", path = "crates/uv-warnings" }
|
||||
uv-workspace = { version = "0.0.9", path = "crates/uv-workspace" }
|
||||
|
||||
ambient-id = { version = "0.0.7", default-features = false, features = ["astral-reqwest-middleware"] }
|
||||
anstream = { version = "0.6.15" }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-auth"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-auth).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-auth).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-bench"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
publish = false
|
||||
authors = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-bench).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-bench).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-bin-install"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-bin-install).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-bin-install).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-build-backend"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-build-backend).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-build-backend).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-build-frontend"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-build-frontend).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-build-frontend).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-build"
|
||||
version = "0.9.19"
|
||||
version = "0.9.20"
|
||||
description = "A Python build backend"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[project]
|
||||
name = "uv-build"
|
||||
version = "0.9.19"
|
||||
version = "0.9.20"
|
||||
description = "The uv build backend"
|
||||
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
|
||||
requires-python = ">=3.8"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-cache-info"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache-info).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-cache-info).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-cache-key"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache-key).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-cache-key).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-cache"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-cache).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-cli"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cli).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-cli).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-client"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-client).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-client).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-configuration"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-configuration).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-configuration).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-console"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-console).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-console).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-dev"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
publish = false
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dev).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-dev).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-dirs"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dirs).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-dirs).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-dispatch"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dispatch).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-dispatch).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-distribution-filename"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution-filename).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-distribution-filename).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-distribution-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution-types).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-distribution-types).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-distribution"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-distribution).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-extract"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-extract).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-extract).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-flags"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-flags).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-flags).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-fs"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-fs).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-fs).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-git-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-git-types).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-git-types).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-git"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-git).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-git).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-globfilter"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
readme = "README.md"
|
||||
edition = { workspace = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-install-wheel"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
keywords = ["wheel", "python"]
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-install-wheel).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-install-wheel).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-installer"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-installer).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-installer).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-keyring"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-logging"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-logging).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-logging).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-macros"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-macros).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-macros).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-metadata"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-metadata).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-metadata).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-normalize"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-normalize).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-normalize).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-once-map"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-once-map).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-once-map).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-options-metadata"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-options-metadata).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-options-metadata).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-pep440"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
license = "Apache-2.0 OR BSD-2-Clause"
|
||||
include = ["/src", "Changelog.md", "License-Apache", "License-BSD", "Readme.md", "pyproject.toml"]
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pep440).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-pep440).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-pep508"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
include = ["/src", "Changelog.md", "License-Apache", "License-BSD", "Readme.md", "pyproject.toml"]
|
||||
license = "Apache-2.0 OR BSD-2-Clause"
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pep508).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-pep508).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-performance-memory-allocator"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found
|
||||
[here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-performance-memory-allocator).
|
||||
[here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-performance-memory-allocator).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-platform-tags"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-platform-tags).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-platform-tags).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-platform"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-platform).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-platform).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-preview"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-preview).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-preview).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-publish"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-publish).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-publish).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-pypi-types"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pypi-types).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-pypi-types).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-python"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-python).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-python).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-redacted"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-redacted).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-redacted).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-requirements-txt"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-requirements-txt).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-requirements-txt).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-requirements"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-requirements).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-requirements).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-resolver"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-resolver).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-resolver).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-scripts"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-scripts).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-scripts).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-settings"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here
|
||||
is unstable and will have frequent breaking changes.
|
||||
|
||||
This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-settings).
|
||||
This version (0.0.9) is a component of [uv 0.9.20](https://crates.io/crates/uv/0.9.20). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.20/crates/uv-settings).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "uv-shell"
|
||||
version = "0.0.8"
|
||||
version = "0.0.9"
|
||||
description = "This is an internal component crate of uv"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user