mirror of https://github.com/astral-sh/uv
Bump version to 0.9.16
This commit is contained in:
parent
eaa1882c51
commit
2d3c4c06bb
52
CHANGELOG.md
52
CHANGELOG.md
|
|
@ -3,6 +3,45 @@
|
|||
<!-- prettier-ignore-start -->
|
||||
|
||||
|
||||
## 0.9.16
|
||||
|
||||
Released on 2025-12-05.
|
||||
|
||||
### Enhancements
|
||||
|
||||
- Add a 5 min default timeout for deadlocks ([#16342](https://github.com/astral-sh/uv/pull/16342))
|
||||
- Add a stub `debug` subcommand to `uv pip` announcing its intentional absence ([#16966](https://github.com/astral-sh/uv/pull/16966))
|
||||
- Add bounds in `uv add --script` ([#16954](https://github.com/astral-sh/uv/pull/16954))
|
||||
- Add brew specific message for `uv self update` ([#16838](https://github.com/astral-sh/uv/pull/16838))
|
||||
- Error when built wheel is for the wrong platform ([#16074](https://github.com/astral-sh/uv/pull/16074))
|
||||
- Filter wheels from PEP 751 files based on `--no-binary` et al in `uv pip compile` ([#16956](https://github.com/astral-sh/uv/pull/16956))
|
||||
- Support `--target` and `--prefix` in `uv pip list`, `uv pip freeze`, and `uv pip show` ([#16955](https://github.com/astral-sh/uv/pull/16955))
|
||||
- Tweak language for build backend validation errors ([#16720](https://github.com/astral-sh/uv/pull/16720))
|
||||
- Use explicit credentials cache instead of global static ([#16768](https://github.com/astral-sh/uv/pull/16768))
|
||||
|
||||
### Preview features
|
||||
|
||||
- workspace metadata: enable preview warning ([#16988](https://github.com/astral-sh/uv/pull/16988))
|
||||
- Add a `uv auth helper --protocol bazel` command ([#16886](https://github.com/astral-sh/uv/pull/16886))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
- Fix Pyston wheel compatibility tags ([#16972](https://github.com/astral-sh/uv/pull/16972))
|
||||
- Noisily allow redundant entries in `tool.uv.build-backend.module-name` ([#16928](https://github.com/astral-sh/uv/pull/16928))
|
||||
|
||||
### Documentation
|
||||
|
||||
- Clarify `--project` flag help text to indicate project discovery ([#16965](https://github.com/astral-sh/uv/pull/16965))
|
||||
- Regenerate the crates.io readmes on release ([#16992](https://github.com/astral-sh/uv/pull/16992))
|
||||
- Update Docker integration guide to prefer `COPY` over `ADD` for simple cases ([#16883](https://github.com/astral-sh/uv/pull/16883))
|
||||
- Update pytorch.md to include information about supporting CUDA 13.0.x ([#16957](https://github.com/astral-sh/uv/pull/16957))
|
||||
- Update the versioning policy to retain the minor breaking scheme indefinitely ([#16710](https://github.com/astral-sh/uv/pull/16710))
|
||||
- Upgrade PyTorch documentation to latest versions ([#16970](https://github.com/astral-sh/uv/pull/16970))
|
||||
|
||||
### Other changes
|
||||
|
||||
- Adjust release script to handle uv-trampoline lockfile changes ([#16971](https://github.com/astral-sh/uv/pull/16971))
|
||||
|
||||
## 0.9.15
|
||||
|
||||
Released on 2025-12-02.
|
||||
|
|
@ -403,25 +442,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
|
||||
|
|
@ -477,4 +516,3 @@ See [changelogs/0.2.x](./changelogs/0.2.x.md)
|
|||
See [changelogs/0.1.x](./changelogs/0.1.x.md)
|
||||
|
||||
<!-- prettier-ignore-end -->
|
||||
|
||||
|
|
|
|||
|
|
@ -5384,7 +5384,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv"
|
||||
version = "0.9.15"
|
||||
version = "0.9.16"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -5503,7 +5503,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-auth"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arcstr",
|
||||
|
|
@ -5546,7 +5546,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-bench"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"codspeed-criterion-compat",
|
||||
|
|
@ -5573,7 +5573,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-bin-install"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"astral-reqwest-middleware",
|
||||
"astral-reqwest-retry",
|
||||
|
|
@ -5598,7 +5598,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-build"
|
||||
version = "0.9.15"
|
||||
version = "0.9.16"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -5610,7 +5610,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-build-backend"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"astral-version-ranges",
|
||||
"base64 0.22.1",
|
||||
|
|
@ -5650,7 +5650,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-build-frontend"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"fs-err",
|
||||
|
|
@ -5688,7 +5688,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-cache"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"fs-err",
|
||||
|
|
@ -5713,7 +5713,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-cache-info"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"fs-err",
|
||||
|
|
@ -5730,7 +5730,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-cache-key"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"hex",
|
||||
"memchr",
|
||||
|
|
@ -5742,7 +5742,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-cli"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -5774,7 +5774,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-client"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
|
|
@ -5837,7 +5837,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-configuration"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"clap",
|
||||
|
|
@ -5866,14 +5866,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-console"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"console 0.16.1",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-dev"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"anyhow",
|
||||
|
|
@ -5922,7 +5922,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-dirs"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"assert_fs",
|
||||
"etcetera",
|
||||
|
|
@ -5934,7 +5934,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-dispatch"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"futures",
|
||||
|
|
@ -5966,7 +5966,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-distribution"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
|
|
@ -6015,7 +6015,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-distribution-filename"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"memchr",
|
||||
|
|
@ -6032,7 +6032,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-distribution-types"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-version-ranges",
|
||||
|
|
@ -6072,7 +6072,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-extract"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"astral-tokio-tar",
|
||||
"astral_async_zip",
|
||||
|
|
@ -6102,14 +6102,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-flags"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"bitflags 2.9.4",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-fs"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"backon",
|
||||
"dunce",
|
||||
|
|
@ -6133,7 +6133,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-git"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"astral-reqwest-middleware",
|
||||
|
|
@ -6159,7 +6159,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-git-types"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"serde",
|
||||
"thiserror 2.0.17",
|
||||
|
|
@ -6171,7 +6171,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-globfilter"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"fs-err",
|
||||
|
|
@ -6188,7 +6188,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-install-wheel"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
|
|
@ -6228,7 +6228,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-installer"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-channel",
|
||||
|
|
@ -6269,7 +6269,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-keyring"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"byteorder",
|
||||
|
|
@ -6286,7 +6286,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-logging"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"jiff",
|
||||
"owo-colors",
|
||||
|
|
@ -6296,7 +6296,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-macros"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
@ -6306,7 +6306,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-metadata"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"astral_async_zip",
|
||||
"fs-err",
|
||||
|
|
@ -6323,7 +6323,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-normalize"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"rkyv",
|
||||
"schemars",
|
||||
|
|
@ -6333,7 +6333,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-once-map"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"dashmap",
|
||||
"futures",
|
||||
|
|
@ -6342,14 +6342,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-options-metadata"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"serde",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-pep440"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"astral-version-ranges",
|
||||
"indoc",
|
||||
|
|
@ -6363,7 +6363,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-pep508"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-version-ranges",
|
||||
|
|
@ -6392,7 +6392,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-performance-memory-allocator"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"mimalloc",
|
||||
"tikv-jemallocator",
|
||||
|
|
@ -6400,7 +6400,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-platform"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"goblin",
|
||||
|
|
@ -6417,7 +6417,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-platform-tags"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"insta",
|
||||
"memchr",
|
||||
|
|
@ -6430,7 +6430,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-preview"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"bitflags 2.9.4",
|
||||
"thiserror 2.0.17",
|
||||
|
|
@ -6439,7 +6439,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-publish"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"ambient-id",
|
||||
"astral-reqwest-middleware",
|
||||
|
|
@ -6479,7 +6479,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-pypi-types"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"hashbrown 0.16.1",
|
||||
|
|
@ -6511,7 +6511,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-python"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
|
|
@ -6573,7 +6573,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-redacted"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"ref-cast",
|
||||
"schemars",
|
||||
|
|
@ -6584,7 +6584,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-requirements"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"configparser",
|
||||
|
|
@ -6619,7 +6619,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-requirements-txt"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_fs",
|
||||
|
|
@ -6652,7 +6652,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-resolver"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"astral-pubgrub",
|
||||
|
|
@ -6717,7 +6717,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-scripts"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"indoc",
|
||||
|
|
@ -6741,7 +6741,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-settings"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"fs-err",
|
||||
|
|
@ -6776,7 +6776,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-shell"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"fs-err",
|
||||
|
|
@ -6793,7 +6793,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-small-str"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"arcstr",
|
||||
"rkyv",
|
||||
|
|
@ -6803,7 +6803,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-state"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"tempfile",
|
||||
|
|
@ -6812,14 +6812,14 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-static"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"uv-macros",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "uv-tool"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"fs-err",
|
||||
"pathdiff",
|
||||
|
|
@ -6848,7 +6848,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-torch"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"clap",
|
||||
"either",
|
||||
|
|
@ -6868,7 +6868,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-trampoline-builder"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"assert_cmd",
|
||||
|
|
@ -6885,7 +6885,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-types"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"dashmap",
|
||||
|
|
@ -6907,11 +6907,11 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-version"
|
||||
version = "0.9.15"
|
||||
version = "0.9.16"
|
||||
|
||||
[[package]]
|
||||
name = "uv-virtualenv"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"console 0.16.1",
|
||||
"fs-err",
|
||||
|
|
@ -6933,7 +6933,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-warnings"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
dependencies = [
|
||||
"anstream",
|
||||
"owo-colors",
|
||||
|
|
@ -6942,7 +6942,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "uv-workspace"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
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.5", path = "crates/uv-auth" }
|
||||
uv-bin-install = { version = "0.0.5", path = "crates/uv-bin-install" }
|
||||
uv-build-backend = { version = "0.0.5", path = "crates/uv-build-backend" }
|
||||
uv-build-frontend = { version = "0.0.5", path = "crates/uv-build-frontend" }
|
||||
uv-cache = { version = "0.0.5", path = "crates/uv-cache" }
|
||||
uv-cache-info = { version = "0.0.5", path = "crates/uv-cache-info" }
|
||||
uv-cache-key = { version = "0.0.5", path = "crates/uv-cache-key" }
|
||||
uv-cli = { version = "0.0.5", path = "crates/uv-cli" }
|
||||
uv-client = { version = "0.0.5", path = "crates/uv-client" }
|
||||
uv-configuration = { version = "0.0.5", path = "crates/uv-configuration" }
|
||||
uv-console = { version = "0.0.5", path = "crates/uv-console" }
|
||||
uv-dirs = { version = "0.0.5", path = "crates/uv-dirs" }
|
||||
uv-dispatch = { version = "0.0.5", path = "crates/uv-dispatch" }
|
||||
uv-distribution = { version = "0.0.5", path = "crates/uv-distribution" }
|
||||
uv-distribution-filename = { version = "0.0.5", path = "crates/uv-distribution-filename" }
|
||||
uv-distribution-types = { version = "0.0.5", path = "crates/uv-distribution-types" }
|
||||
uv-extract = { version = "0.0.5", path = "crates/uv-extract" }
|
||||
uv-flags = { version = "0.0.5", path = "crates/uv-flags" }
|
||||
uv-fs = { version = "0.0.5", path = "crates/uv-fs", features = ["serde", "tokio"] }
|
||||
uv-git = { version = "0.0.5", path = "crates/uv-git" }
|
||||
uv-git-types = { version = "0.0.5", path = "crates/uv-git-types" }
|
||||
uv-globfilter = { version = "0.0.5", path = "crates/uv-globfilter" }
|
||||
uv-install-wheel = { version = "0.0.5", path = "crates/uv-install-wheel", default-features = false }
|
||||
uv-installer = { version = "0.0.5", path = "crates/uv-installer" }
|
||||
uv-keyring = { version = "0.0.5", path = "crates/uv-keyring" }
|
||||
uv-logging = { version = "0.0.5", path = "crates/uv-logging" }
|
||||
uv-macros = { version = "0.0.5", path = "crates/uv-macros" }
|
||||
uv-metadata = { version = "0.0.5", path = "crates/uv-metadata" }
|
||||
uv-normalize = { version = "0.0.5", path = "crates/uv-normalize" }
|
||||
uv-once-map = { version = "0.0.5", path = "crates/uv-once-map" }
|
||||
uv-options-metadata = { version = "0.0.5", path = "crates/uv-options-metadata" }
|
||||
uv-performance-memory-allocator = { version = "0.0.5", path = "crates/uv-performance-memory-allocator" }
|
||||
uv-pep440 = { version = "0.0.5", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] }
|
||||
uv-pep508 = { version = "0.0.5", path = "crates/uv-pep508", features = ["non-pep508-extensions"] }
|
||||
uv-platform = { version = "0.0.5", path = "crates/uv-platform" }
|
||||
uv-platform-tags = { version = "0.0.5", path = "crates/uv-platform-tags" }
|
||||
uv-preview = { version = "0.0.5", path = "crates/uv-preview" }
|
||||
uv-publish = { version = "0.0.5", path = "crates/uv-publish" }
|
||||
uv-pypi-types = { version = "0.0.5", path = "crates/uv-pypi-types" }
|
||||
uv-python = { version = "0.0.5", path = "crates/uv-python" }
|
||||
uv-redacted = { version = "0.0.5", path = "crates/uv-redacted" }
|
||||
uv-requirements = { version = "0.0.5", path = "crates/uv-requirements" }
|
||||
uv-requirements-txt = { version = "0.0.5", path = "crates/uv-requirements-txt" }
|
||||
uv-resolver = { version = "0.0.5", path = "crates/uv-resolver" }
|
||||
uv-scripts = { version = "0.0.5", path = "crates/uv-scripts" }
|
||||
uv-settings = { version = "0.0.5", path = "crates/uv-settings" }
|
||||
uv-shell = { version = "0.0.5", path = "crates/uv-shell" }
|
||||
uv-small-str = { version = "0.0.5", path = "crates/uv-small-str" }
|
||||
uv-state = { version = "0.0.5", path = "crates/uv-state" }
|
||||
uv-static = { version = "0.0.5", path = "crates/uv-static" }
|
||||
uv-tool = { version = "0.0.5", path = "crates/uv-tool" }
|
||||
uv-torch = { version = "0.0.5", path = "crates/uv-torch" }
|
||||
uv-trampoline-builder = { version = "0.0.5", path = "crates/uv-trampoline-builder" }
|
||||
uv-types = { version = "0.0.5", path = "crates/uv-types" }
|
||||
uv-version = { version = "0.9.15", path = "crates/uv-version" }
|
||||
uv-virtualenv = { version = "0.0.5", path = "crates/uv-virtualenv" }
|
||||
uv-warnings = { version = "0.0.5", path = "crates/uv-warnings" }
|
||||
uv-workspace = { version = "0.0.5", path = "crates/uv-workspace" }
|
||||
uv-auth = { version = "0.0.6", path = "crates/uv-auth" }
|
||||
uv-bin-install = { version = "0.0.6", path = "crates/uv-bin-install" }
|
||||
uv-build-backend = { version = "0.0.6", path = "crates/uv-build-backend" }
|
||||
uv-build-frontend = { version = "0.0.6", path = "crates/uv-build-frontend" }
|
||||
uv-cache = { version = "0.0.6", path = "crates/uv-cache" }
|
||||
uv-cache-info = { version = "0.0.6", path = "crates/uv-cache-info" }
|
||||
uv-cache-key = { version = "0.0.6", path = "crates/uv-cache-key" }
|
||||
uv-cli = { version = "0.0.6", path = "crates/uv-cli" }
|
||||
uv-client = { version = "0.0.6", path = "crates/uv-client" }
|
||||
uv-configuration = { version = "0.0.6", path = "crates/uv-configuration" }
|
||||
uv-console = { version = "0.0.6", path = "crates/uv-console" }
|
||||
uv-dirs = { version = "0.0.6", path = "crates/uv-dirs" }
|
||||
uv-dispatch = { version = "0.0.6", path = "crates/uv-dispatch" }
|
||||
uv-distribution = { version = "0.0.6", path = "crates/uv-distribution" }
|
||||
uv-distribution-filename = { version = "0.0.6", path = "crates/uv-distribution-filename" }
|
||||
uv-distribution-types = { version = "0.0.6", path = "crates/uv-distribution-types" }
|
||||
uv-extract = { version = "0.0.6", path = "crates/uv-extract" }
|
||||
uv-flags = { version = "0.0.6", path = "crates/uv-flags" }
|
||||
uv-fs = { version = "0.0.6", path = "crates/uv-fs", features = ["serde", "tokio"] }
|
||||
uv-git = { version = "0.0.6", path = "crates/uv-git" }
|
||||
uv-git-types = { version = "0.0.6", path = "crates/uv-git-types" }
|
||||
uv-globfilter = { version = "0.0.6", path = "crates/uv-globfilter" }
|
||||
uv-install-wheel = { version = "0.0.6", path = "crates/uv-install-wheel", default-features = false }
|
||||
uv-installer = { version = "0.0.6", path = "crates/uv-installer" }
|
||||
uv-keyring = { version = "0.0.6", path = "crates/uv-keyring" }
|
||||
uv-logging = { version = "0.0.6", path = "crates/uv-logging" }
|
||||
uv-macros = { version = "0.0.6", path = "crates/uv-macros" }
|
||||
uv-metadata = { version = "0.0.6", path = "crates/uv-metadata" }
|
||||
uv-normalize = { version = "0.0.6", path = "crates/uv-normalize" }
|
||||
uv-once-map = { version = "0.0.6", path = "crates/uv-once-map" }
|
||||
uv-options-metadata = { version = "0.0.6", path = "crates/uv-options-metadata" }
|
||||
uv-performance-memory-allocator = { version = "0.0.6", path = "crates/uv-performance-memory-allocator" }
|
||||
uv-pep440 = { version = "0.0.6", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] }
|
||||
uv-pep508 = { version = "0.0.6", path = "crates/uv-pep508", features = ["non-pep508-extensions"] }
|
||||
uv-platform = { version = "0.0.6", path = "crates/uv-platform" }
|
||||
uv-platform-tags = { version = "0.0.6", path = "crates/uv-platform-tags" }
|
||||
uv-preview = { version = "0.0.6", path = "crates/uv-preview" }
|
||||
uv-publish = { version = "0.0.6", path = "crates/uv-publish" }
|
||||
uv-pypi-types = { version = "0.0.6", path = "crates/uv-pypi-types" }
|
||||
uv-python = { version = "0.0.6", path = "crates/uv-python" }
|
||||
uv-redacted = { version = "0.0.6", path = "crates/uv-redacted" }
|
||||
uv-requirements = { version = "0.0.6", path = "crates/uv-requirements" }
|
||||
uv-requirements-txt = { version = "0.0.6", path = "crates/uv-requirements-txt" }
|
||||
uv-resolver = { version = "0.0.6", path = "crates/uv-resolver" }
|
||||
uv-scripts = { version = "0.0.6", path = "crates/uv-scripts" }
|
||||
uv-settings = { version = "0.0.6", path = "crates/uv-settings" }
|
||||
uv-shell = { version = "0.0.6", path = "crates/uv-shell" }
|
||||
uv-small-str = { version = "0.0.6", path = "crates/uv-small-str" }
|
||||
uv-state = { version = "0.0.6", path = "crates/uv-state" }
|
||||
uv-static = { version = "0.0.6", path = "crates/uv-static" }
|
||||
uv-tool = { version = "0.0.6", path = "crates/uv-tool" }
|
||||
uv-torch = { version = "0.0.6", path = "crates/uv-torch" }
|
||||
uv-trampoline-builder = { version = "0.0.6", path = "crates/uv-trampoline-builder" }
|
||||
uv-types = { version = "0.0.6", path = "crates/uv-types" }
|
||||
uv-version = { version = "0.9.16", path = "crates/uv-version" }
|
||||
uv-virtualenv = { version = "0.0.6", path = "crates/uv-virtualenv" }
|
||||
uv-warnings = { version = "0.0.6", path = "crates/uv-warnings" }
|
||||
uv-workspace = { version = "0.0.6", path = "crates/uv-workspace" }
|
||||
|
||||
ambient-id = { version = "0.0.6", default-features = false, features = ["astral-reqwest-middleware"] }
|
||||
anstream = { version = "0.6.15" }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-auth"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-auth).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-bench).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-bin-install).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-build-backend).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-build-frontend).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.15"
|
||||
version = "0.9.16"
|
||||
description = "A Python build backend"
|
||||
edition = { workspace = true }
|
||||
rust-version = { workspace = true }
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "uv-build"
|
||||
version = "0.9.15"
|
||||
version = "0.9.16"
|
||||
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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-cache-info).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-cache-key).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-cache).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-cli).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-client).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-configuration).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-console).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-dev).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-dirs).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-dispatch).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-distribution-filename).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-distribution-types).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-distribution).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-extract).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-flags).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-fs).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-git-types).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-git).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-install-wheel).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-installer).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-logging).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-macros).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-metadata).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-normalize).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-once-map).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-options-metadata).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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"]
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-pep508"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
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"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-performance-memory-allocator"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found
|
||||
[here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-performance-memory-allocator).
|
||||
[here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-platform-tags).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-platform).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-preview).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-publish).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-pypi-types).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-python).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-redacted).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-requirements-txt).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-requirements).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-resolver).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-scripts).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-settings).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/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.5"
|
||||
version = "0.0.6"
|
||||
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.5) is a component of [uv 0.9.15](https://crates.io/crates/uv/0.9.15). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.15/crates/uv-shell).
|
||||
This version (0.0.6) is a component of [uv 0.9.16](https://crates.io/crates/uv/0.9.16). The source
|
||||
can be found [here](https://github.com/astral-sh/uv/blob/0.9.16/crates/uv-shell).
|
||||
|
||||
See uv's
|
||||
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "uv-small-str"
|
||||
version = "0.0.5"
|
||||
version = "0.0.6"
|
||||
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
Loading…
Reference in New Issue