Bump version to 0.11.7 (#19017)

This commit is contained in:
Zanie Blue
2026-04-15 16:03:37 -05:00
committed by GitHub
parent 0912d4432a
commit 9d177269e1
145 changed files with 417 additions and 388 deletions
+69 -40
View File
@@ -3,6 +3,35 @@
<!-- prettier-ignore-start -->
## 0.11.7
Released on 2026-04-15.
### Python
- Upgrade CPython build to 20260414 including an OpenSSL security upgrade ([#19004](https://github.com/astral-sh/uv/pull/19004))
### Enhancements
- Elevate configuration errors to `required-version` mismatches ([#18977](https://github.com/astral-sh/uv/pull/18977))
- Further improve TLS certificate validation messages ([#18933](https://github.com/astral-sh/uv/pull/18933))
- Improve `--exclude-newer` hints ([#18952](https://github.com/astral-sh/uv/pull/18952))
### Preview features
- Fix `--script` handling in `uv audit` ([#18970](https://github.com/astral-sh/uv/pull/18970))
- Fix traversal of extras in `uv audit` ([#18970](https://github.com/astral-sh/uv/pull/18970))
### Bug fixes
- De-quote `workspace metadata` in linehaul data ([#18966](https://github.com/astral-sh/uv/pull/18966))
- Avoid installing tool workspace member dependencies as editable ([#18891](https://github.com/astral-sh/uv/pull/18891))
- Emit JSON report for `uv sync --check` failures ([#18976](https://github.com/astral-sh/uv/pull/18976))
- Filter and warn on invalid TLS certificates ([#18951](https://github.com/astral-sh/uv/pull/18951))
- Fix equality comparisons for version specifiers with `~=` operators ([#18960](https://github.com/astral-sh/uv/pull/18960))
- Fix stale Python upgrade preview feature check in project environment construction ([#18961](https://github.com/astral-sh/uv/pull/18961))
- Improve Windows path normalization ([#18945](https://github.com/astral-sh/uv/pull/18945))
## 0.11.6
Released on 2026-04-09.
@@ -154,28 +183,28 @@ The changes are largely driven by the upgrade of reqwest, which powers uv's HTTP
The following changes are included:
- [`rustls-platform-verifier`](https://github.com/rustls/rustls-platform-verifier) is used instead of [`rustls-native-certs`](https://github.com/rustls/rustls-native-certs) and [`webpki`](https://github.com/rustls/webpki) for certificate verification
**This change should have no effect unless you are using the `native-tls` option to enable reading system certificates.**
`rustls-platform-verifier` delegates to the system for certificate validation (e.g., `Security.framework` on macOS) instead of eagerly loading certificates from the system and verifying them via `webpki`. The effects of this change will vary based on the operating system. In general, uv's certificate validation should now be more consistent with browsers and other native applications. However, this is the most likely cause of breaking changes in this release. Some previously failing certificate chains may succeed, and some previously accepted certificate chains may fail. In either case, we expect the validation to be more correct and welcome reports of regressions.
In particular, because more responsibility for validating the certificate is transferred to your system's security library, some features like [CA constraints](https://support.apple.com/en-us/103255) or [revocation of certificates](https://en.wikipedia.org/wiki/Certificate_revocation) via OCSP and CRLs may now be used.
This change should improve performance when using system certificate on macOS, as uv no longer needs to load all certificates from the keychain at startup.
- [`aws-lc`](https://github.com/aws/aws-lc) is used instead of `ring` for a cryptography backend
There should not be breaking changes from this change. We expect this to expand support for certificate signature algorithms.
- `--native-tls` is deprecated in favor of a new `--system-certs` flag
The `--native-tls` flag is still usable and has identical behavior to `--system-certs.`
This change was made to reduce confusion about the TLS implementation uv uses. uv always uses `rustls` not `native-tls`.
- Building uv on x86-64 and i686 Windows requires NASM
NASM is required by `aws-lc`. If not found on the system, a prebuilt blob provided by `aws-lc-sys` will be used.
If you are not building uv from source, this change has no effect.
See the [CONTRIBUTING](https://github.com/astral-sh/uv/blob/b6854d77bfd0cb78157fecaf8b30126c6f16bc11/CONTRIBUTING.md#setup) guide for details.
- Empty `SSL_CERT_FILE` values are ignored (for consistency with `SSL_CERT_DIR`)
@@ -541,86 +570,86 @@ There are no breaking changes to [`uv_build`](https://docs.astral.sh/uv/concepts
### Breaking changes
- **Require `--clear` to remove existing virtual environments in `uv venv`** ([#17757](https://github.com/astral-sh/uv/pull/17757))
Previously, `uv venv` would prompt for confirmation before removing an existing virtual environment in interactive contexts, and remove it without confirmation in non-interactive contexts. Now, `uv venv` requires the `--clear` flag to remove an existing virtual environment. A warning for this change was added in [uv 0.8](https://github.com/astral-sh/uv/blob/main/changelogs/0.8.x.md#breaking-changes).
You can opt out of this behavior by passing the `--clear` flag or setting `UV_VENV_CLEAR=1`.
- **Error if multiple indexes include `default = true`** ([#17011](https://github.com/astral-sh/uv/pull/17011))
Previously, uv would silently accept multiple indexes with `default = true` and use the first one. Now, uv will error if multiple indexes are marked as the default.
You cannot opt out of this behavior. Remove `default = true` from all but one index.
- **Error when an `explicit` index is unnamed** ([#17777](https://github.com/astral-sh/uv/pull/17777))
Explicit indexes can only be used via the `[tool.uv.sources]` table, which requires referencing the index by name. Previously, uv would silently accept unnamed explicit indexes, which could never be referenced. Now, uv will error if an explicit index does not have a name.
You cannot opt out of this behavior. Add a `name` to the explicit index or remove the entry.
- **Install alternative Python executables using their implementation name** ([#17756](https://github.com/astral-sh/uv/pull/17756), [#17760](https://github.com/astral-sh/uv/pull/17760))
Previously, `uv python install` would install PyPy, GraalPy, and Pyodide executables with names like `python3.10` into the bin directory. Now, these executables will be named using their implementation name, e.g., `pypy3.10`, `graalpy3.10`, and `pyodide3.12`, to avoid conflicting with CPython installations.
You cannot opt out of this behavior.
- **Respect global Python version pins in `uv tool run` and `uv tool install`** ([#14112](https://github.com/astral-sh/uv/pull/14112))
Previously, `uv tool run` and `uv tool install` did not respect the global Python version pin (set via `uv python pin --global`). Now, these commands will use the global Python version when no explicit version is requested.
For `uv tool install`, if the tool is already installed, the Python version will not change unless `--reinstall` or `--python` is provided. If the tool was previously installed with an explicit `--python` flag, the global pin will not override it.
You can opt out of this behavior by providing an explicit `--python` flag.
- **Remove Debian Bookworm, Alpine 3.21, and Python 3.8 Docker images** ([#17755](https://github.com/astral-sh/uv/pull/17755))
The Debian Bookworm and Alpine 3.21 images were replaced by Debian Trixie and Alpine 3.22 as defaults in [uv 0.9](https://github.com/astral-sh/uv/pull/15352). These older images are now removed. Python 3.8 images are also removed, as Python 3.8 is no longer supported in the Trixie or Alpine base images.
The following image tags are no longer published:
- `uv:bookworm`, `uv:bookworm-slim`
- `uv:alpine3.21`
- `uv:python3.8-*`
Use `uv:debian` or `uv:trixie` instead of `uv:bookworm`, `uv:alpine` or `uv:alpine3.22` instead of `uv:alpine3.21`, and a newer Python version instead of `uv:python3.8-*`.
- **Drop PPC64 (big endian) builds** ([#17626](https://github.com/astral-sh/uv/pull/17626))
uv no longer provides pre-built binaries for PPC64 (big endian). This platform appears to be largely unused and is only supported on a single manylinux version. PPC64LE (little endian) builds are unaffected.
Building uv from source is still supported for this platform.
- **Skip generating `activate.csh` for relocatable virtual environments** ([#17759](https://github.com/astral-sh/uv/pull/17759))
Previously, `uv venv --relocatable` would generate an `activate.csh` script that contained hardcoded paths, making it incompatible with relocation. Now, the `activate.csh` script is not generated for relocatable virtual environments.
You cannot opt out of this behavior.
- **Require username when multiple credentials match a URL** ([#16983](https://github.com/astral-sh/uv/pull/16983))
When using `uv auth login` to store credentials, you can register multiple username and password combinations for the same host. Previously, when uv needed to authenticate and multiple credentials matched the URL (e.g., when retrieving a token with `uv auth token`), uv would pick the first match. Now, uv will error instead.
You cannot opt out of this behavior. Include the username in the request, e.g., `uv auth token --username foo example.com`.
- **Avoid invalidating the lockfile versions after an `exclude-newer` change** ([#17721](https://github.com/astral-sh/uv/pull/17721))
Previously, changing the `exclude-newer` setting would cause package versions to be upgraded, ignoring the lockfile entirely. Now, uv will only change package versions if they are no longer within the `exclude-newer` range.
You can restore the previous behavior by using `--upgrade` or `--upgrade-package` to opt-in to package version changes.
- **Upgrade `uv format` to Ruff 0.15.0** ([#17838](https://github.com/astral-sh/uv/pull/17838))
`uv format` now uses [Ruff 0.15.0](https://github.com/astral-sh/ruff/releases/tag/0.15.0), which uses the [2026 style guide](https://astral.sh/blog/ruff-v0.15.0#the-ruff-2026-style-guide). See the blog post for details.
The formatting of code is likely to change. You can opt out of this behavior by requesting an older Ruff version, e.g., `uv format --version 0.14.14`.
- **Update uv crate test features to use `test-` as a prefix** ([#17860](https://github.com/astral-sh/uv/pull/17860))
This change only affects redistributors of uv. The Cargo features used to gate test dependencies, e.g., `pypi`, have been renamed with a `test-` prefix for clarity, e.g., `test-pypi`.
### Stabilizations
- **`uv python upgrade` and `uv python install --upgrade`** ([#17766](https://github.com/astral-sh/uv/pull/17766))
When installing Python versions, an [intermediary directory](https://docs.astral.sh/uv/concepts/python-versions/#minor-version-directories) without the patch version attached will be created, and virtual environments will be transparently upgraded to new patch versions.
See the [Python version documentation](https://docs.astral.sh/uv/concepts/python-versions/#upgrading-python-versions) for more details.
- **`uv add --bounds` and the `add-bounds` configuration option** ([#17660](https://github.com/astral-sh/uv/pull/17660))
This does not come with any behavior changes. You will no longer see an experimental warning when using `uv add --bounds` or `add-bounds` in configuration.
- **`uv workspace list` and `uv workspace dir`** ([#17768](https://github.com/astral-sh/uv/pull/17768))
This does not come with any behavior changes. You will no longer see an experimental warning when using these commands.
- **`extra-build-dependencies`** ([#17767](https://github.com/astral-sh/uv/pull/17767))
This does not come with any behavior changes. You will no longer see an experimental warning when using `extra-build-dependencies` in configuration.
### Enhancements
Generated
+66 -66
View File
@@ -5753,7 +5753,7 @@ dependencies = [
[[package]]
name = "uv"
version = "0.11.6"
version = "0.11.7"
dependencies = [
"anstream",
"anyhow",
@@ -5880,7 +5880,7 @@ dependencies = [
[[package]]
name = "uv-audit"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral-reqwest-middleware",
"clap",
@@ -5904,7 +5904,7 @@ dependencies = [
[[package]]
name = "uv-auth"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"arcstr",
@@ -5947,7 +5947,7 @@ dependencies = [
[[package]]
name = "uv-bench"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"codspeed-criterion-compat",
@@ -5974,7 +5974,7 @@ dependencies = [
[[package]]
name = "uv-bin-install"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral-reqwest-middleware",
"astral-reqwest-retry",
@@ -6001,7 +6001,7 @@ dependencies = [
[[package]]
name = "uv-build"
version = "0.11.6"
version = "0.11.7"
dependencies = [
"anstream",
"anyhow",
@@ -6016,7 +6016,7 @@ dependencies = [
[[package]]
name = "uv-build-backend"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral-version-ranges",
"base64 0.22.1",
@@ -6058,7 +6058,7 @@ dependencies = [
[[package]]
name = "uv-build-frontend"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"fs-err",
@@ -6095,7 +6095,7 @@ dependencies = [
[[package]]
name = "uv-cache"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"clap",
"fs-err",
@@ -6121,7 +6121,7 @@ dependencies = [
[[package]]
name = "uv-cache-info"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"fs-err",
@@ -6138,7 +6138,7 @@ dependencies = [
[[package]]
name = "uv-cache-key"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"hex",
"memchr",
@@ -6150,7 +6150,7 @@ dependencies = [
[[package]]
name = "uv-cli"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"anyhow",
@@ -6183,7 +6183,7 @@ dependencies = [
[[package]]
name = "uv-client"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"astral-reqwest-middleware",
@@ -6253,7 +6253,7 @@ dependencies = [
[[package]]
name = "uv-configuration"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"clap",
@@ -6287,14 +6287,14 @@ dependencies = [
[[package]]
name = "uv-console"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"console",
]
[[package]]
name = "uv-dev"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"anyhow",
@@ -6343,7 +6343,7 @@ dependencies = [
[[package]]
name = "uv-dirs"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"assert_fs",
"etcetera",
@@ -6355,7 +6355,7 @@ dependencies = [
[[package]]
name = "uv-dispatch"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"futures",
@@ -6387,7 +6387,7 @@ dependencies = [
[[package]]
name = "uv-distribution"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"astral-reqwest-middleware",
@@ -6439,7 +6439,7 @@ dependencies = [
[[package]]
name = "uv-distribution-filename"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"insta",
"memchr",
@@ -6456,7 +6456,7 @@ dependencies = [
[[package]]
name = "uv-distribution-types"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"arcstr",
"astral-version-ranges",
@@ -6496,7 +6496,7 @@ dependencies = [
[[package]]
name = "uv-extract"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral-tokio-tar",
"astral_async_zip",
@@ -6527,14 +6527,14 @@ dependencies = [
[[package]]
name = "uv-flags"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"bitflags 2.11.0",
]
[[package]]
name = "uv-fs"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"backon",
"clap",
@@ -6563,7 +6563,7 @@ dependencies = [
[[package]]
name = "uv-git"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"astral-reqwest-middleware",
@@ -6588,7 +6588,7 @@ dependencies = [
[[package]]
name = "uv-git-types"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"serde",
"thiserror 2.0.18",
@@ -6601,7 +6601,7 @@ dependencies = [
[[package]]
name = "uv-globfilter"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"fs-err",
@@ -6618,7 +6618,7 @@ dependencies = [
[[package]]
name = "uv-install-wheel"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_fs",
@@ -6655,7 +6655,7 @@ dependencies = [
[[package]]
name = "uv-installer"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"anyhow",
@@ -6698,7 +6698,7 @@ dependencies = [
[[package]]
name = "uv-keyring"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"async-trait",
"byteorder",
@@ -6714,7 +6714,7 @@ dependencies = [
[[package]]
name = "uv-logging"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"jiff",
"owo-colors",
@@ -6724,7 +6724,7 @@ dependencies = [
[[package]]
name = "uv-macros"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"proc-macro2",
"quote",
@@ -6734,7 +6734,7 @@ dependencies = [
[[package]]
name = "uv-metadata"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral_async_zip",
"fs-err",
@@ -6751,7 +6751,7 @@ dependencies = [
[[package]]
name = "uv-normalize"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"rkyv",
"schemars",
@@ -6761,7 +6761,7 @@ dependencies = [
[[package]]
name = "uv-once-map"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"dashmap",
"futures",
@@ -6770,14 +6770,14 @@ dependencies = [
[[package]]
name = "uv-options-metadata"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"serde",
]
[[package]]
name = "uv-pep440"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"astral-version-ranges",
"indoc",
@@ -6791,7 +6791,7 @@ dependencies = [
[[package]]
name = "uv-pep508"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"arcstr",
"astral-version-ranges",
@@ -6821,7 +6821,7 @@ dependencies = [
[[package]]
name = "uv-performance-memory-allocator"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"mimalloc",
"tikv-jemallocator",
@@ -6829,7 +6829,7 @@ dependencies = [
[[package]]
name = "uv-platform"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"fs-err",
"goblin",
@@ -6850,7 +6850,7 @@ dependencies = [
[[package]]
name = "uv-platform-tags"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"bitflags 2.11.0",
"insta",
@@ -6864,7 +6864,7 @@ dependencies = [
[[package]]
name = "uv-preview"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"enumflags2",
"itertools 0.14.0",
@@ -6875,7 +6875,7 @@ dependencies = [
[[package]]
name = "uv-publish"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"ambient-id",
"anstream",
@@ -6917,7 +6917,7 @@ dependencies = [
[[package]]
name = "uv-pypi-types"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"hashbrown 0.16.1",
@@ -6950,7 +6950,7 @@ dependencies = [
[[package]]
name = "uv-python"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_fs",
@@ -7013,7 +7013,7 @@ dependencies = [
[[package]]
name = "uv-redacted"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"ref-cast",
"schemars",
@@ -7024,7 +7024,7 @@ dependencies = [
[[package]]
name = "uv-requirements"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"configparser",
@@ -7058,7 +7058,7 @@ dependencies = [
[[package]]
name = "uv-requirements-txt"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_fs",
@@ -7091,7 +7091,7 @@ dependencies = [
[[package]]
name = "uv-resolver"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"arcstr",
"astral-pubgrub",
@@ -7157,7 +7157,7 @@ dependencies = [
[[package]]
name = "uv-scripts"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"fs-err",
"indoc",
@@ -7182,7 +7182,7 @@ dependencies = [
[[package]]
name = "uv-settings"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"clap",
"fs-err",
@@ -7219,7 +7219,7 @@ dependencies = [
[[package]]
name = "uv-shell"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"fs-err",
@@ -7236,7 +7236,7 @@ dependencies = [
[[package]]
name = "uv-small-str"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"arcstr",
"rkyv",
@@ -7246,7 +7246,7 @@ dependencies = [
[[package]]
name = "uv-state"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"fs-err",
"tempfile",
@@ -7255,7 +7255,7 @@ dependencies = [
[[package]]
name = "uv-static"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"thiserror 2.0.18",
"uv-macros",
@@ -7263,7 +7263,7 @@ dependencies = [
[[package]]
name = "uv-test"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_cmd",
@@ -7293,7 +7293,7 @@ dependencies = [
[[package]]
name = "uv-tool"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"fs-err",
"owo-colors",
@@ -7322,7 +7322,7 @@ dependencies = [
[[package]]
name = "uv-torch"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"clap",
"either",
@@ -7342,7 +7342,7 @@ dependencies = [
[[package]]
name = "uv-trampoline-builder"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_cmd",
@@ -7360,7 +7360,7 @@ dependencies = [
[[package]]
name = "uv-types"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"dashmap",
@@ -7382,7 +7382,7 @@ dependencies = [
[[package]]
name = "uv-unix"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"nix 0.31.2",
"thiserror 2.0.18",
@@ -7390,11 +7390,11 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.11.6"
version = "0.11.7"
[[package]]
name = "uv-virtualenv"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"console",
"fs-err",
@@ -7415,7 +7415,7 @@ dependencies = [
[[package]]
name = "uv-warnings"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anstream",
"anyhow",
@@ -7427,14 +7427,14 @@ dependencies = [
[[package]]
name = "uv-windows"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"windows",
]
[[package]]
name = "uv-workspace"
version = "0.0.39"
version = "0.0.40"
dependencies = [
"anyhow",
"assert_fs",
+62 -62
View File
@@ -16,77 +16,77 @@ authors = ["uv"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
uv-audit = { version = "0.0.39", path = "crates/uv-audit" }
uv-auth = { version = "0.0.39", path = "crates/uv-auth" }
uv-bin-install = { version = "0.0.39", path = "crates/uv-bin-install" }
uv-build-backend = { version = "0.0.39", path = "crates/uv-build-backend" }
uv-build-frontend = { version = "0.0.39", path = "crates/uv-build-frontend" }
uv-cache = { version = "0.0.39", path = "crates/uv-cache" }
uv-cache-info = { version = "0.0.39", path = "crates/uv-cache-info" }
uv-cache-key = { version = "0.0.39", path = "crates/uv-cache-key" }
uv-cli = { version = "0.0.39", path = "crates/uv-cli" }
uv-client = { version = "0.0.39", path = "crates/uv-client" }
uv-configuration = { version = "0.0.39", path = "crates/uv-configuration" }
uv-console = { version = "0.0.39", path = "crates/uv-console" }
uv-dirs = { version = "0.0.39", path = "crates/uv-dirs" }
uv-dispatch = { version = "0.0.39", path = "crates/uv-dispatch" }
uv-distribution = { version = "0.0.39", path = "crates/uv-distribution" }
uv-distribution-filename = { version = "0.0.39", path = "crates/uv-distribution-filename" }
uv-distribution-types = { version = "0.0.39", path = "crates/uv-distribution-types" }
uv-extract = { version = "0.0.39", path = "crates/uv-extract" }
uv-flags = { version = "0.0.39", path = "crates/uv-flags" }
uv-fs = { version = "0.0.39", path = "crates/uv-fs", features = [
uv-audit = { version = "0.0.40", path = "crates/uv-audit" }
uv-auth = { version = "0.0.40", path = "crates/uv-auth" }
uv-bin-install = { version = "0.0.40", path = "crates/uv-bin-install" }
uv-build-backend = { version = "0.0.40", path = "crates/uv-build-backend" }
uv-build-frontend = { version = "0.0.40", path = "crates/uv-build-frontend" }
uv-cache = { version = "0.0.40", path = "crates/uv-cache" }
uv-cache-info = { version = "0.0.40", path = "crates/uv-cache-info" }
uv-cache-key = { version = "0.0.40", path = "crates/uv-cache-key" }
uv-cli = { version = "0.0.40", path = "crates/uv-cli" }
uv-client = { version = "0.0.40", path = "crates/uv-client" }
uv-configuration = { version = "0.0.40", path = "crates/uv-configuration" }
uv-console = { version = "0.0.40", path = "crates/uv-console" }
uv-dirs = { version = "0.0.40", path = "crates/uv-dirs" }
uv-dispatch = { version = "0.0.40", path = "crates/uv-dispatch" }
uv-distribution = { version = "0.0.40", path = "crates/uv-distribution" }
uv-distribution-filename = { version = "0.0.40", path = "crates/uv-distribution-filename" }
uv-distribution-types = { version = "0.0.40", path = "crates/uv-distribution-types" }
uv-extract = { version = "0.0.40", path = "crates/uv-extract" }
uv-flags = { version = "0.0.40", path = "crates/uv-flags" }
uv-fs = { version = "0.0.40", path = "crates/uv-fs", features = [
"serde",
"tokio",
] }
uv-git = { version = "0.0.39", path = "crates/uv-git" }
uv-git-types = { version = "0.0.39", path = "crates/uv-git-types" }
uv-globfilter = { version = "0.0.39", path = "crates/uv-globfilter" }
uv-install-wheel = { version = "0.0.39", path = "crates/uv-install-wheel", default-features = false }
uv-installer = { version = "0.0.39", path = "crates/uv-installer" }
uv-keyring = { version = "0.0.39", path = "crates/uv-keyring" }
uv-logging = { version = "0.0.39", path = "crates/uv-logging" }
uv-macros = { version = "0.0.39", path = "crates/uv-macros" }
uv-metadata = { version = "0.0.39", path = "crates/uv-metadata" }
uv-normalize = { version = "0.0.39", path = "crates/uv-normalize" }
uv-once-map = { version = "0.0.39", path = "crates/uv-once-map" }
uv-options-metadata = { version = "0.0.39", path = "crates/uv-options-metadata" }
uv-performance-memory-allocator = { version = "0.0.39", path = "crates/uv-performance-memory-allocator" }
uv-pep440 = { version = "0.0.39", path = "crates/uv-pep440", features = [
uv-git = { version = "0.0.40", path = "crates/uv-git" }
uv-git-types = { version = "0.0.40", path = "crates/uv-git-types" }
uv-globfilter = { version = "0.0.40", path = "crates/uv-globfilter" }
uv-install-wheel = { version = "0.0.40", path = "crates/uv-install-wheel", default-features = false }
uv-installer = { version = "0.0.40", path = "crates/uv-installer" }
uv-keyring = { version = "0.0.40", path = "crates/uv-keyring" }
uv-logging = { version = "0.0.40", path = "crates/uv-logging" }
uv-macros = { version = "0.0.40", path = "crates/uv-macros" }
uv-metadata = { version = "0.0.40", path = "crates/uv-metadata" }
uv-normalize = { version = "0.0.40", path = "crates/uv-normalize" }
uv-once-map = { version = "0.0.40", path = "crates/uv-once-map" }
uv-options-metadata = { version = "0.0.40", path = "crates/uv-options-metadata" }
uv-performance-memory-allocator = { version = "0.0.40", path = "crates/uv-performance-memory-allocator" }
uv-pep440 = { version = "0.0.40", path = "crates/uv-pep440", features = [
"tracing",
"rkyv",
"version-ranges",
] }
uv-pep508 = { version = "0.0.39", path = "crates/uv-pep508", features = [
uv-pep508 = { version = "0.0.40", path = "crates/uv-pep508", features = [
"non-pep508-extensions",
] }
uv-platform = { version = "0.0.39", path = "crates/uv-platform" }
uv-platform-tags = { version = "0.0.39", path = "crates/uv-platform-tags" }
uv-preview = { version = "0.0.39", path = "crates/uv-preview" }
uv-publish = { version = "0.0.39", path = "crates/uv-publish" }
uv-pypi-types = { version = "0.0.39", path = "crates/uv-pypi-types" }
uv-python = { version = "0.0.39", path = "crates/uv-python" }
uv-redacted = { version = "0.0.39", path = "crates/uv-redacted" }
uv-requirements = { version = "0.0.39", path = "crates/uv-requirements" }
uv-requirements-txt = { version = "0.0.39", path = "crates/uv-requirements-txt" }
uv-resolver = { version = "0.0.39", path = "crates/uv-resolver" }
uv-scripts = { version = "0.0.39", path = "crates/uv-scripts" }
uv-settings = { version = "0.0.39", path = "crates/uv-settings" }
uv-shell = { version = "0.0.39", path = "crates/uv-shell" }
uv-small-str = { version = "0.0.39", path = "crates/uv-small-str" }
uv-state = { version = "0.0.39", path = "crates/uv-state" }
uv-static = { version = "0.0.39", path = "crates/uv-static" }
uv-test = { version = "0.0.39", path = "crates/uv-test" }
uv-tool = { version = "0.0.39", path = "crates/uv-tool" }
uv-torch = { version = "0.0.39", path = "crates/uv-torch" }
uv-trampoline-builder = { version = "0.0.39", path = "crates/uv-trampoline-builder" }
uv-types = { version = "0.0.39", path = "crates/uv-types" }
uv-unix = { version = "0.0.39", path = "crates/uv-unix" }
uv-version = { version = "0.11.6", path = "crates/uv-version" }
uv-virtualenv = { version = "0.0.39", path = "crates/uv-virtualenv" }
uv-warnings = { version = "0.0.39", path = "crates/uv-warnings" }
uv-windows = { version = "0.0.39", path = "crates/uv-windows" }
uv-workspace = { version = "0.0.39", path = "crates/uv-workspace" }
uv-platform = { version = "0.0.40", path = "crates/uv-platform" }
uv-platform-tags = { version = "0.0.40", path = "crates/uv-platform-tags" }
uv-preview = { version = "0.0.40", path = "crates/uv-preview" }
uv-publish = { version = "0.0.40", path = "crates/uv-publish" }
uv-pypi-types = { version = "0.0.40", path = "crates/uv-pypi-types" }
uv-python = { version = "0.0.40", path = "crates/uv-python" }
uv-redacted = { version = "0.0.40", path = "crates/uv-redacted" }
uv-requirements = { version = "0.0.40", path = "crates/uv-requirements" }
uv-requirements-txt = { version = "0.0.40", path = "crates/uv-requirements-txt" }
uv-resolver = { version = "0.0.40", path = "crates/uv-resolver" }
uv-scripts = { version = "0.0.40", path = "crates/uv-scripts" }
uv-settings = { version = "0.0.40", path = "crates/uv-settings" }
uv-shell = { version = "0.0.40", path = "crates/uv-shell" }
uv-small-str = { version = "0.0.40", path = "crates/uv-small-str" }
uv-state = { version = "0.0.40", path = "crates/uv-state" }
uv-static = { version = "0.0.40", path = "crates/uv-static" }
uv-test = { version = "0.0.40", path = "crates/uv-test" }
uv-tool = { version = "0.0.40", path = "crates/uv-tool" }
uv-torch = { version = "0.0.40", path = "crates/uv-torch" }
uv-trampoline-builder = { version = "0.0.40", path = "crates/uv-trampoline-builder" }
uv-types = { version = "0.0.40", path = "crates/uv-types" }
uv-unix = { version = "0.0.40", path = "crates/uv-unix" }
uv-version = { version = "0.11.7", path = "crates/uv-version" }
uv-virtualenv = { version = "0.0.40", path = "crates/uv-virtualenv" }
uv-warnings = { version = "0.0.40", path = "crates/uv-warnings" }
uv-windows = { version = "0.0.40", path = "crates/uv-windows" }
uv-workspace = { version = "0.0.40", path = "crates/uv-workspace" }
ambient-id = { version = "0.0.11", default-features = false, features = [
"reqwest-middleware",
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-audit"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition.workspace = true
rust-version.workspace = true
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-audit).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-audit).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-auth"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-auth).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-auth).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-bench"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
publish = false
authors = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-bench).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-bench).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-bin-install"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-bin-install).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-bin-install).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-build-backend"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-build-backend).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-build-backend).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-build-frontend"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-build-frontend).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-build-frontend).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-build"
version = "0.11.6"
version = "0.11.7"
description = "A Python build backend"
edition = { workspace = true }
rust-version = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
[project]
name = "uv-build"
version = "0.11.6"
version = "0.11.7"
description = "The uv build backend"
authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
requires-python = ">=3.8"
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-cache-info"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-cache-info).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-cache-info).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-cache-key"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-cache-key).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-cache-key).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-cache"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-cache).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-cache).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-cli"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-cli).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-cli).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-client"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-client).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-client).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-configuration"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-configuration).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-configuration).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-console"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-console).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-console).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-dev"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
publish = false
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-dev).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-dev).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-dirs"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-dirs).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-dirs).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-dispatch"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-dispatch).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-dispatch).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-distribution-filename"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-distribution-filename).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-distribution-filename).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-distribution-types"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-distribution-types).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-distribution-types).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-distribution"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-distribution).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-distribution).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-extract"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-extract).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-extract).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-flags"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-flags).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-flags).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-fs"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-fs).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-fs).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-git-types"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-git-types).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-git-types).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-git"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-git).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-git).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-globfilter"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
readme = "README.md"
edition = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-install-wheel"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
keywords = ["wheel", "python"]
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-install-wheel).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-install-wheel).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-installer"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-installer).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-installer).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-keyring"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-logging"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-logging).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-logging).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-macros"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-macros).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-macros).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-metadata"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-metadata).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-metadata).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-normalize"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-normalize).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-normalize).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-once-map"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-once-map).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-once-map).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-options-metadata"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-options-metadata).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-options-metadata).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-pep440"
version = "0.0.39"
version = "0.0.40"
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"]
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-pep440).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-pep440).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-pep508"
version = "0.0.39"
version = "0.0.40"
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"
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-pep508).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/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.39"
version = "0.0.40"
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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found
[here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-performance-memory-allocator).
[here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-performance-memory-allocator).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-platform-tags"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-platform-tags).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-platform-tags).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-platform"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-platform).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-platform).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-preview"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-preview).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-preview).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-publish"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-publish).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-publish).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-pypi-types"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-pypi-types).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-pypi-types).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-python"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-python).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-python).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-redacted"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-redacted).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-redacted).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-requirements-txt"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-requirements-txt).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-requirements-txt).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-requirements"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-requirements).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-requirements).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-resolver"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-resolver).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-resolver).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-scripts"
version = "0.0.39"
version = "0.0.40"
description = "This is an internal component crate of uv"
edition = { workspace = true }
rust-version = { workspace = true }
+2 -2
View File
@@ -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.39) is a component of [uv 0.11.6](https://crates.io/crates/uv/0.11.6). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.6/crates/uv-scripts).
This version (0.0.40) is a component of [uv 0.11.7](https://crates.io/crates/uv/0.11.7). The source
can be found [here](https://github.com/astral-sh/uv/blob/0.11.7/crates/uv-scripts).
See uv's
[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning)
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "uv-settings"
version = "0.0.39"
version = "0.0.40"
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