diff --git a/CHANGELOG.md b/CHANGELOG.md index 723e060ff..6305a6280 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,43 @@ +## 0.9.18 + +Released on 2025-12-16. + +### Enhancements + +- Add value hints to command line arguments to improve shell completion accuracy ([#17080](https://github.com/astral-sh/uv/pull/17080)) +- Improve error handling in `uv publish` ([#17096](https://github.com/astral-sh/uv/pull/17096)) +- Improve rendering of multiline error messages ([#17132](https://github.com/astral-sh/uv/pull/17132)) +- Support redirects in `uv publish` ([#17130](https://github.com/astral-sh/uv/pull/17130)) +- Include Docker images with the alpine version, e.g., `python3.x-alpine3.23` ([#17100](https://github.com/astral-sh/uv/pull/17100)) + +### Configuration + +- Accept `--torch-backend` in `[tool.uv]` ([#17116](https://github.com/astral-sh/uv/pull/17116)) + +### Performance + +- Speed up `uv cache size` ([#17015](https://github.com/astral-sh/uv/pull/17015)) +- Initialize S3 signer once ([#17092](https://github.com/astral-sh/uv/pull/17092)) + +### Bug fixes + +- Avoid panics due to reads on failed requests ([#17098](https://github.com/astral-sh/uv/pull/17098)) +- Enforce latest-version in `@latest` requests ([#17114](https://github.com/astral-sh/uv/pull/17114)) +- Explicitly set `EntryType` for file entries in tar ([#17043](https://github.com/astral-sh/uv/pull/17043)) +- Ignore `pyproject.toml` index username in lockfile comparison ([#16995](https://github.com/astral-sh/uv/pull/16995)) +- Relax error when using `uv add` with `UV_GIT_LFS` set ([#17127](https://github.com/astral-sh/uv/pull/17127)) +- Support file locks on ExFAT on macOS ([#17115](https://github.com/astral-sh/uv/pull/17115)) +- Change schema for `exclude-newer` into optional string ([#17121](https://github.com/astral-sh/uv/pull/17121)) + +### Documentation + +- Drop arm musl caveat from Docker documentation ([#17111](https://github.com/astral-sh/uv/pull/17111)) +- Fix version reference in resolver example ([#17085](https://github.com/astral-sh/uv/pull/17085)) +- Better documentation for `exclude-newer*` ([#17079](https://github.com/astral-sh/uv/pull/17079)) + ## 0.9.17 Released on 2025-12-09. @@ -466,25 +503,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 `/dist/` rather than `/child/dist/`. ### Python diff --git a/Cargo.lock b/Cargo.lock index 2d8fbe779..380328072 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5406,7 +5406,7 @@ dependencies = [ [[package]] name = "uv" -version = "0.9.17" +version = "0.9.18" dependencies = [ "anstream", "anyhow", @@ -5525,7 +5525,7 @@ dependencies = [ [[package]] name = "uv-auth" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "arcstr", @@ -5568,7 +5568,7 @@ dependencies = [ [[package]] name = "uv-bench" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "codspeed-criterion-compat", @@ -5595,7 +5595,7 @@ dependencies = [ [[package]] name = "uv-bin-install" -version = "0.0.7" +version = "0.0.8" dependencies = [ "astral-reqwest-middleware", "astral-reqwest-retry", @@ -5619,7 +5619,7 @@ dependencies = [ [[package]] name = "uv-build" -version = "0.9.17" +version = "0.9.18" dependencies = [ "anstream", "anyhow", @@ -5631,7 +5631,7 @@ dependencies = [ [[package]] name = "uv-build-backend" -version = "0.0.7" +version = "0.0.8" dependencies = [ "astral-version-ranges", "base64 0.22.1", @@ -5671,7 +5671,7 @@ dependencies = [ [[package]] name = "uv-build-frontend" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anstream", "fs-err", @@ -5709,7 +5709,7 @@ dependencies = [ [[package]] name = "uv-cache" -version = "0.0.7" +version = "0.0.8" dependencies = [ "clap", "fs-err", @@ -5735,7 +5735,7 @@ dependencies = [ [[package]] name = "uv-cache-info" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "fs-err", @@ -5752,7 +5752,7 @@ dependencies = [ [[package]] name = "uv-cache-key" -version = "0.0.7" +version = "0.0.8" dependencies = [ "hex", "memchr", @@ -5764,7 +5764,7 @@ dependencies = [ [[package]] name = "uv-cli" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anstream", "anyhow", @@ -5796,7 +5796,7 @@ dependencies = [ [[package]] name = "uv-client" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "astral-reqwest-middleware", @@ -5859,7 +5859,7 @@ dependencies = [ [[package]] name = "uv-configuration" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "clap", @@ -5888,14 +5888,14 @@ dependencies = [ [[package]] name = "uv-console" -version = "0.0.7" +version = "0.0.8" dependencies = [ "console 0.16.1", ] [[package]] name = "uv-dev" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anstream", "anyhow", @@ -5944,7 +5944,7 @@ dependencies = [ [[package]] name = "uv-dirs" -version = "0.0.7" +version = "0.0.8" dependencies = [ "assert_fs", "etcetera", @@ -5956,7 +5956,7 @@ dependencies = [ [[package]] name = "uv-dispatch" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "futures", @@ -5988,7 +5988,7 @@ dependencies = [ [[package]] name = "uv-distribution" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "astral-reqwest-middleware", @@ -6037,7 +6037,7 @@ dependencies = [ [[package]] name = "uv-distribution-filename" -version = "0.0.7" +version = "0.0.8" dependencies = [ "insta", "memchr", @@ -6054,7 +6054,7 @@ dependencies = [ [[package]] name = "uv-distribution-types" -version = "0.0.7" +version = "0.0.8" dependencies = [ "arcstr", "astral-version-ranges", @@ -6094,7 +6094,7 @@ dependencies = [ [[package]] name = "uv-extract" -version = "0.0.7" +version = "0.0.8" dependencies = [ "astral-tokio-tar", "astral_async_zip", @@ -6124,14 +6124,14 @@ dependencies = [ [[package]] name = "uv-flags" -version = "0.0.7" +version = "0.0.8" dependencies = [ "bitflags 2.9.4", ] [[package]] name = "uv-fs" -version = "0.0.7" +version = "0.0.8" dependencies = [ "backon", "dunce", @@ -6155,7 +6155,7 @@ dependencies = [ [[package]] name = "uv-git" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "astral-reqwest-middleware", @@ -6181,7 +6181,7 @@ dependencies = [ [[package]] name = "uv-git-types" -version = "0.0.7" +version = "0.0.8" dependencies = [ "serde", "thiserror 2.0.17", @@ -6193,7 +6193,7 @@ dependencies = [ [[package]] name = "uv-globfilter" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anstream", "fs-err", @@ -6210,7 +6210,7 @@ dependencies = [ [[package]] name = "uv-install-wheel" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "assert_fs", @@ -6250,7 +6250,7 @@ dependencies = [ [[package]] name = "uv-installer" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "async-channel", @@ -6291,7 +6291,7 @@ dependencies = [ [[package]] name = "uv-keyring" -version = "0.0.7" +version = "0.0.8" dependencies = [ "async-trait", "byteorder", @@ -6308,7 +6308,7 @@ dependencies = [ [[package]] name = "uv-logging" -version = "0.0.7" +version = "0.0.8" dependencies = [ "jiff", "owo-colors", @@ -6318,7 +6318,7 @@ dependencies = [ [[package]] name = "uv-macros" -version = "0.0.7" +version = "0.0.8" dependencies = [ "proc-macro2", "quote", @@ -6328,7 +6328,7 @@ dependencies = [ [[package]] name = "uv-metadata" -version = "0.0.7" +version = "0.0.8" dependencies = [ "astral_async_zip", "fs-err", @@ -6345,7 +6345,7 @@ dependencies = [ [[package]] name = "uv-normalize" -version = "0.0.7" +version = "0.0.8" dependencies = [ "rkyv", "schemars", @@ -6355,7 +6355,7 @@ dependencies = [ [[package]] name = "uv-once-map" -version = "0.0.7" +version = "0.0.8" dependencies = [ "dashmap", "futures", @@ -6364,14 +6364,14 @@ dependencies = [ [[package]] name = "uv-options-metadata" -version = "0.0.7" +version = "0.0.8" dependencies = [ "serde", ] [[package]] name = "uv-pep440" -version = "0.0.7" +version = "0.0.8" dependencies = [ "astral-version-ranges", "indoc", @@ -6385,7 +6385,7 @@ dependencies = [ [[package]] name = "uv-pep508" -version = "0.0.7" +version = "0.0.8" dependencies = [ "arcstr", "astral-version-ranges", @@ -6414,7 +6414,7 @@ dependencies = [ [[package]] name = "uv-performance-memory-allocator" -version = "0.0.7" +version = "0.0.8" dependencies = [ "mimalloc", "tikv-jemallocator", @@ -6422,7 +6422,7 @@ dependencies = [ [[package]] name = "uv-platform" -version = "0.0.7" +version = "0.0.8" dependencies = [ "fs-err", "goblin", @@ -6439,7 +6439,7 @@ dependencies = [ [[package]] name = "uv-platform-tags" -version = "0.0.7" +version = "0.0.8" dependencies = [ "insta", "memchr", @@ -6452,7 +6452,7 @@ dependencies = [ [[package]] name = "uv-preview" -version = "0.0.7" +version = "0.0.8" dependencies = [ "bitflags 2.9.4", "thiserror 2.0.17", @@ -6461,7 +6461,7 @@ dependencies = [ [[package]] name = "uv-publish" -version = "0.0.7" +version = "0.0.8" dependencies = [ "ambient-id", "anstream", @@ -6503,7 +6503,7 @@ dependencies = [ [[package]] name = "uv-pypi-types" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "hashbrown 0.16.1", @@ -6535,7 +6535,7 @@ dependencies = [ [[package]] name = "uv-python" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "assert_fs", @@ -6597,7 +6597,7 @@ dependencies = [ [[package]] name = "uv-redacted" -version = "0.0.7" +version = "0.0.8" dependencies = [ "ref-cast", "schemars", @@ -6608,7 +6608,7 @@ dependencies = [ [[package]] name = "uv-requirements" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "configparser", @@ -6643,7 +6643,7 @@ dependencies = [ [[package]] name = "uv-requirements-txt" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "assert_fs", @@ -6676,7 +6676,7 @@ dependencies = [ [[package]] name = "uv-resolver" -version = "0.0.7" +version = "0.0.8" dependencies = [ "arcstr", "astral-pubgrub", @@ -6741,7 +6741,7 @@ dependencies = [ [[package]] name = "uv-scripts" -version = "0.0.7" +version = "0.0.8" dependencies = [ "fs-err", "indoc", @@ -6765,7 +6765,7 @@ dependencies = [ [[package]] name = "uv-settings" -version = "0.0.7" +version = "0.0.8" dependencies = [ "clap", "fs-err", @@ -6800,7 +6800,7 @@ dependencies = [ [[package]] name = "uv-shell" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "fs-err", @@ -6817,7 +6817,7 @@ dependencies = [ [[package]] name = "uv-small-str" -version = "0.0.7" +version = "0.0.8" dependencies = [ "arcstr", "rkyv", @@ -6827,7 +6827,7 @@ dependencies = [ [[package]] name = "uv-state" -version = "0.0.7" +version = "0.0.8" dependencies = [ "fs-err", "tempfile", @@ -6836,14 +6836,14 @@ dependencies = [ [[package]] name = "uv-static" -version = "0.0.7" +version = "0.0.8" dependencies = [ "uv-macros", ] [[package]] name = "uv-tool" -version = "0.0.7" +version = "0.0.8" dependencies = [ "fs-err", "pathdiff", @@ -6872,7 +6872,7 @@ dependencies = [ [[package]] name = "uv-torch" -version = "0.0.7" +version = "0.0.8" dependencies = [ "clap", "either", @@ -6892,7 +6892,7 @@ dependencies = [ [[package]] name = "uv-trampoline-builder" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "assert_cmd", @@ -6909,7 +6909,7 @@ dependencies = [ [[package]] name = "uv-types" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "dashmap", @@ -6931,11 +6931,11 @@ dependencies = [ [[package]] name = "uv-version" -version = "0.9.17" +version = "0.9.18" [[package]] name = "uv-virtualenv" -version = "0.0.7" +version = "0.0.8" dependencies = [ "console 0.16.1", "fs-err", @@ -6957,7 +6957,7 @@ dependencies = [ [[package]] name = "uv-warnings" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anstream", "anyhow", @@ -6969,7 +6969,7 @@ dependencies = [ [[package]] name = "uv-workspace" -version = "0.0.7" +version = "0.0.8" dependencies = [ "anyhow", "assert_fs", diff --git a/Cargo.toml b/Cargo.toml index f985df7be..091e1af3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,64 +16,64 @@ authors = ["uv"] license = "MIT OR Apache-2.0" [workspace.dependencies] -uv-auth = { version = "0.0.7", path = "crates/uv-auth" } -uv-bin-install = { version = "0.0.7", path = "crates/uv-bin-install" } -uv-build-backend = { version = "0.0.7", path = "crates/uv-build-backend" } -uv-build-frontend = { version = "0.0.7", path = "crates/uv-build-frontend" } -uv-cache = { version = "0.0.7", path = "crates/uv-cache" } -uv-cache-info = { version = "0.0.7", path = "crates/uv-cache-info" } -uv-cache-key = { version = "0.0.7", path = "crates/uv-cache-key" } -uv-cli = { version = "0.0.7", path = "crates/uv-cli" } -uv-client = { version = "0.0.7", path = "crates/uv-client" } -uv-configuration = { version = "0.0.7", path = "crates/uv-configuration" } -uv-console = { version = "0.0.7", path = "crates/uv-console" } -uv-dirs = { version = "0.0.7", path = "crates/uv-dirs" } -uv-dispatch = { version = "0.0.7", path = "crates/uv-dispatch" } -uv-distribution = { version = "0.0.7", path = "crates/uv-distribution" } -uv-distribution-filename = { version = "0.0.7", path = "crates/uv-distribution-filename" } -uv-distribution-types = { version = "0.0.7", path = "crates/uv-distribution-types" } -uv-extract = { version = "0.0.7", path = "crates/uv-extract" } -uv-flags = { version = "0.0.7", path = "crates/uv-flags" } -uv-fs = { version = "0.0.7", path = "crates/uv-fs", features = ["serde", "tokio"] } -uv-git = { version = "0.0.7", path = "crates/uv-git" } -uv-git-types = { version = "0.0.7", path = "crates/uv-git-types" } -uv-globfilter = { version = "0.0.7", path = "crates/uv-globfilter" } -uv-install-wheel = { version = "0.0.7", path = "crates/uv-install-wheel", default-features = false } -uv-installer = { version = "0.0.7", path = "crates/uv-installer" } -uv-keyring = { version = "0.0.7", path = "crates/uv-keyring" } -uv-logging = { version = "0.0.7", path = "crates/uv-logging" } -uv-macros = { version = "0.0.7", path = "crates/uv-macros" } -uv-metadata = { version = "0.0.7", path = "crates/uv-metadata" } -uv-normalize = { version = "0.0.7", path = "crates/uv-normalize" } -uv-once-map = { version = "0.0.7", path = "crates/uv-once-map" } -uv-options-metadata = { version = "0.0.7", path = "crates/uv-options-metadata" } -uv-performance-memory-allocator = { version = "0.0.7", path = "crates/uv-performance-memory-allocator" } -uv-pep440 = { version = "0.0.7", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] } -uv-pep508 = { version = "0.0.7", path = "crates/uv-pep508", features = ["non-pep508-extensions"] } -uv-platform = { version = "0.0.7", path = "crates/uv-platform" } -uv-platform-tags = { version = "0.0.7", path = "crates/uv-platform-tags" } -uv-preview = { version = "0.0.7", path = "crates/uv-preview" } -uv-publish = { version = "0.0.7", path = "crates/uv-publish" } -uv-pypi-types = { version = "0.0.7", path = "crates/uv-pypi-types" } -uv-python = { version = "0.0.7", path = "crates/uv-python" } -uv-redacted = { version = "0.0.7", path = "crates/uv-redacted" } -uv-requirements = { version = "0.0.7", path = "crates/uv-requirements" } -uv-requirements-txt = { version = "0.0.7", path = "crates/uv-requirements-txt" } -uv-resolver = { version = "0.0.7", path = "crates/uv-resolver" } -uv-scripts = { version = "0.0.7", path = "crates/uv-scripts" } -uv-settings = { version = "0.0.7", path = "crates/uv-settings" } -uv-shell = { version = "0.0.7", path = "crates/uv-shell" } -uv-small-str = { version = "0.0.7", path = "crates/uv-small-str" } -uv-state = { version = "0.0.7", path = "crates/uv-state" } -uv-static = { version = "0.0.7", path = "crates/uv-static" } -uv-tool = { version = "0.0.7", path = "crates/uv-tool" } -uv-torch = { version = "0.0.7", path = "crates/uv-torch" } -uv-trampoline-builder = { version = "0.0.7", path = "crates/uv-trampoline-builder" } -uv-types = { version = "0.0.7", path = "crates/uv-types" } -uv-version = { version = "0.9.17", path = "crates/uv-version" } -uv-virtualenv = { version = "0.0.7", path = "crates/uv-virtualenv" } -uv-warnings = { version = "0.0.7", path = "crates/uv-warnings" } -uv-workspace = { version = "0.0.7", path = "crates/uv-workspace" } +uv-auth = { version = "0.0.8", path = "crates/uv-auth" } +uv-bin-install = { version = "0.0.8", path = "crates/uv-bin-install" } +uv-build-backend = { version = "0.0.8", path = "crates/uv-build-backend" } +uv-build-frontend = { version = "0.0.8", path = "crates/uv-build-frontend" } +uv-cache = { version = "0.0.8", path = "crates/uv-cache" } +uv-cache-info = { version = "0.0.8", path = "crates/uv-cache-info" } +uv-cache-key = { version = "0.0.8", path = "crates/uv-cache-key" } +uv-cli = { version = "0.0.8", path = "crates/uv-cli" } +uv-client = { version = "0.0.8", path = "crates/uv-client" } +uv-configuration = { version = "0.0.8", path = "crates/uv-configuration" } +uv-console = { version = "0.0.8", path = "crates/uv-console" } +uv-dirs = { version = "0.0.8", path = "crates/uv-dirs" } +uv-dispatch = { version = "0.0.8", path = "crates/uv-dispatch" } +uv-distribution = { version = "0.0.8", path = "crates/uv-distribution" } +uv-distribution-filename = { version = "0.0.8", path = "crates/uv-distribution-filename" } +uv-distribution-types = { version = "0.0.8", path = "crates/uv-distribution-types" } +uv-extract = { version = "0.0.8", path = "crates/uv-extract" } +uv-flags = { version = "0.0.8", path = "crates/uv-flags" } +uv-fs = { version = "0.0.8", path = "crates/uv-fs", features = ["serde", "tokio"] } +uv-git = { version = "0.0.8", path = "crates/uv-git" } +uv-git-types = { version = "0.0.8", path = "crates/uv-git-types" } +uv-globfilter = { version = "0.0.8", path = "crates/uv-globfilter" } +uv-install-wheel = { version = "0.0.8", path = "crates/uv-install-wheel", default-features = false } +uv-installer = { version = "0.0.8", path = "crates/uv-installer" } +uv-keyring = { version = "0.0.8", path = "crates/uv-keyring" } +uv-logging = { version = "0.0.8", path = "crates/uv-logging" } +uv-macros = { version = "0.0.8", path = "crates/uv-macros" } +uv-metadata = { version = "0.0.8", path = "crates/uv-metadata" } +uv-normalize = { version = "0.0.8", path = "crates/uv-normalize" } +uv-once-map = { version = "0.0.8", path = "crates/uv-once-map" } +uv-options-metadata = { version = "0.0.8", path = "crates/uv-options-metadata" } +uv-performance-memory-allocator = { version = "0.0.8", path = "crates/uv-performance-memory-allocator" } +uv-pep440 = { version = "0.0.8", path = "crates/uv-pep440", features = ["tracing", "rkyv", "version-ranges"] } +uv-pep508 = { version = "0.0.8", path = "crates/uv-pep508", features = ["non-pep508-extensions"] } +uv-platform = { version = "0.0.8", path = "crates/uv-platform" } +uv-platform-tags = { version = "0.0.8", path = "crates/uv-platform-tags" } +uv-preview = { version = "0.0.8", path = "crates/uv-preview" } +uv-publish = { version = "0.0.8", path = "crates/uv-publish" } +uv-pypi-types = { version = "0.0.8", path = "crates/uv-pypi-types" } +uv-python = { version = "0.0.8", path = "crates/uv-python" } +uv-redacted = { version = "0.0.8", path = "crates/uv-redacted" } +uv-requirements = { version = "0.0.8", path = "crates/uv-requirements" } +uv-requirements-txt = { version = "0.0.8", path = "crates/uv-requirements-txt" } +uv-resolver = { version = "0.0.8", path = "crates/uv-resolver" } +uv-scripts = { version = "0.0.8", path = "crates/uv-scripts" } +uv-settings = { version = "0.0.8", path = "crates/uv-settings" } +uv-shell = { version = "0.0.8", path = "crates/uv-shell" } +uv-small-str = { version = "0.0.8", path = "crates/uv-small-str" } +uv-state = { version = "0.0.8", path = "crates/uv-state" } +uv-static = { version = "0.0.8", path = "crates/uv-static" } +uv-tool = { version = "0.0.8", path = "crates/uv-tool" } +uv-torch = { version = "0.0.8", path = "crates/uv-torch" } +uv-trampoline-builder = { version = "0.0.8", path = "crates/uv-trampoline-builder" } +uv-types = { version = "0.0.8", path = "crates/uv-types" } +uv-version = { version = "0.9.18", path = "crates/uv-version" } +uv-virtualenv = { version = "0.0.8", path = "crates/uv-virtualenv" } +uv-warnings = { version = "0.0.8", path = "crates/uv-warnings" } +uv-workspace = { version = "0.0.8", path = "crates/uv-workspace" } ambient-id = { version = "0.0.7", default-features = false, features = ["astral-reqwest-middleware"] } anstream = { version = "0.6.15" } diff --git a/crates/uv-auth/Cargo.toml b/crates/uv-auth/Cargo.toml index fb2b01789..9400f2c4e 100644 --- a/crates/uv-auth/Cargo.toml +++ b/crates/uv-auth/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-auth" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-auth/README.md b/crates/uv-auth/README.md index e17071c13..0761ece30 100644 --- a/crates/uv-auth/README.md +++ b/crates/uv-auth/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-auth). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-auth). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-bench/Cargo.toml b/crates/uv-bench/Cargo.toml index 5c8bea312..d4c7b150d 100644 --- a/crates/uv-bench/Cargo.toml +++ b/crates/uv-bench/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-bench" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" publish = false authors = { workspace = true } diff --git a/crates/uv-bench/README.md b/crates/uv-bench/README.md index 4bba32a46..b6c2ddcf5 100644 --- a/crates/uv-bench/README.md +++ b/crates/uv-bench/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-bench). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-bench). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-bin-install/Cargo.toml b/crates/uv-bin-install/Cargo.toml index f0241f480..ed92c8c4e 100644 --- a/crates/uv-bin-install/Cargo.toml +++ b/crates/uv-bin-install/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-bin-install" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-bin-install/README.md b/crates/uv-bin-install/README.md index 349c8e1c4..05ed47d85 100644 --- a/crates/uv-bin-install/README.md +++ b/crates/uv-bin-install/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-bin-install). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-bin-install). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-build-backend/Cargo.toml b/crates/uv-build-backend/Cargo.toml index fc8255e7e..71b24a60a 100644 --- a/crates/uv-build-backend/Cargo.toml +++ b/crates/uv-build-backend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-build-backend" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-build-backend/README.md b/crates/uv-build-backend/README.md index e70ffb0b9..d37b542a0 100644 --- a/crates/uv-build-backend/README.md +++ b/crates/uv-build-backend/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-build-backend). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-build-backend). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-build-frontend/Cargo.toml b/crates/uv-build-frontend/Cargo.toml index b36235a9c..4604a4800 100644 --- a/crates/uv-build-frontend/Cargo.toml +++ b/crates/uv-build-frontend/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-build-frontend" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-build-frontend/README.md b/crates/uv-build-frontend/README.md index 45905a5d9..fa98f9f83 100644 --- a/crates/uv-build-frontend/README.md +++ b/crates/uv-build-frontend/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-build-frontend). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-build-frontend). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-build/Cargo.toml b/crates/uv-build/Cargo.toml index 01962031d..c3b173ee1 100644 --- a/crates/uv-build/Cargo.toml +++ b/crates/uv-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-build" -version = "0.9.17" +version = "0.9.18" description = "A Python build backend" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-build/pyproject.toml b/crates/uv-build/pyproject.toml index 1bc65e534..7425a145c 100644 --- a/crates/uv-build/pyproject.toml +++ b/crates/uv-build/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "uv-build" -version = "0.9.17" +version = "0.9.18" description = "The uv build backend" authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] requires-python = ">=3.8" diff --git a/crates/uv-cache-info/Cargo.toml b/crates/uv-cache-info/Cargo.toml index 6b637423d..93314bb5d 100644 --- a/crates/uv-cache-info/Cargo.toml +++ b/crates/uv-cache-info/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-cache-info" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-cache-info/README.md b/crates/uv-cache-info/README.md index 2fa9622cc..9942184c0 100644 --- a/crates/uv-cache-info/README.md +++ b/crates/uv-cache-info/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-cache-info). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache-info). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-cache-key/Cargo.toml b/crates/uv-cache-key/Cargo.toml index 32a1eef79..882388820 100644 --- a/crates/uv-cache-key/Cargo.toml +++ b/crates/uv-cache-key/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-cache-key" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-cache-key/README.md b/crates/uv-cache-key/README.md index b71344ddc..427f7de3f 100644 --- a/crates/uv-cache-key/README.md +++ b/crates/uv-cache-key/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-cache-key). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache-key). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-cache/Cargo.toml b/crates/uv-cache/Cargo.toml index 681bd520e..d185756f4 100644 --- a/crates/uv-cache/Cargo.toml +++ b/crates/uv-cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-cache" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-cache/README.md b/crates/uv-cache/README.md index aa1f0b481..7b5c905b9 100644 --- a/crates/uv-cache/README.md +++ b/crates/uv-cache/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-cache). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cache). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-cli/Cargo.toml b/crates/uv-cli/Cargo.toml index 221471738..00de7bf18 100644 --- a/crates/uv-cli/Cargo.toml +++ b/crates/uv-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-cli" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-cli/README.md b/crates/uv-cli/README.md index e04e51649..f7151edd3 100644 --- a/crates/uv-cli/README.md +++ b/crates/uv-cli/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-cli). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-cli). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-client/Cargo.toml b/crates/uv-client/Cargo.toml index e54f89860..9dc48cdfd 100644 --- a/crates/uv-client/Cargo.toml +++ b/crates/uv-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-client" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-client/README.md b/crates/uv-client/README.md index 2a0d6c714..fd339d76b 100644 --- a/crates/uv-client/README.md +++ b/crates/uv-client/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-client). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-client). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-configuration/Cargo.toml b/crates/uv-configuration/Cargo.toml index ddfa7097d..68716343c 100644 --- a/crates/uv-configuration/Cargo.toml +++ b/crates/uv-configuration/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-configuration" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-configuration/README.md b/crates/uv-configuration/README.md index 96cd34bde..813adc6bf 100644 --- a/crates/uv-configuration/README.md +++ b/crates/uv-configuration/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-configuration). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-configuration). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-console/Cargo.toml b/crates/uv-console/Cargo.toml index a3ad784be..4a5ddb4a8 100644 --- a/crates/uv-console/Cargo.toml +++ b/crates/uv-console/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-console" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-console/README.md b/crates/uv-console/README.md index 0d34263ea..eb96af3a7 100644 --- a/crates/uv-console/README.md +++ b/crates/uv-console/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-console). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-console). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-dev/Cargo.toml b/crates/uv-dev/Cargo.toml index 6d1b03883..103434b37 100644 --- a/crates/uv-dev/Cargo.toml +++ b/crates/uv-dev/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-dev" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" publish = false diff --git a/crates/uv-dev/README.md b/crates/uv-dev/README.md index 12dc4241f..832264d66 100644 --- a/crates/uv-dev/README.md +++ b/crates/uv-dev/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-dev). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dev). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-dirs/Cargo.toml b/crates/uv-dirs/Cargo.toml index 171c50af1..f4dcf123c 100644 --- a/crates/uv-dirs/Cargo.toml +++ b/crates/uv-dirs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-dirs" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-dirs/README.md b/crates/uv-dirs/README.md index dedef0b43..851cfa728 100644 --- a/crates/uv-dirs/README.md +++ b/crates/uv-dirs/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-dirs). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dirs). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-dispatch/Cargo.toml b/crates/uv-dispatch/Cargo.toml index 3c0c2ca46..a0dbfa36f 100644 --- a/crates/uv-dispatch/Cargo.toml +++ b/crates/uv-dispatch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-dispatch" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-dispatch/README.md b/crates/uv-dispatch/README.md index 8752ee66b..0360194c5 100644 --- a/crates/uv-dispatch/README.md +++ b/crates/uv-dispatch/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-dispatch). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-dispatch). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-distribution-filename/Cargo.toml b/crates/uv-distribution-filename/Cargo.toml index 62daf6534..b668a5151 100644 --- a/crates/uv-distribution-filename/Cargo.toml +++ b/crates/uv-distribution-filename/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-distribution-filename" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-distribution-filename/README.md b/crates/uv-distribution-filename/README.md index eae91d29f..67000cdd5 100644 --- a/crates/uv-distribution-filename/README.md +++ b/crates/uv-distribution-filename/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-distribution-filename). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution-filename). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-distribution-types/Cargo.toml b/crates/uv-distribution-types/Cargo.toml index 5c8c75ca4..74d0d7002 100644 --- a/crates/uv-distribution-types/Cargo.toml +++ b/crates/uv-distribution-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-distribution-types" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-distribution-types/README.md b/crates/uv-distribution-types/README.md index b5e56ce08..c1aca655a 100644 --- a/crates/uv-distribution-types/README.md +++ b/crates/uv-distribution-types/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-distribution-types). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution-types). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-distribution/Cargo.toml b/crates/uv-distribution/Cargo.toml index 79ea165b2..3a1e8ccd5 100644 --- a/crates/uv-distribution/Cargo.toml +++ b/crates/uv-distribution/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-distribution" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-distribution/README.md b/crates/uv-distribution/README.md index d7a5c5144..003bc6592 100644 --- a/crates/uv-distribution/README.md +++ b/crates/uv-distribution/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-distribution). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-distribution). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-extract/Cargo.toml b/crates/uv-extract/Cargo.toml index 3ce60f74d..49f4e0253 100644 --- a/crates/uv-extract/Cargo.toml +++ b/crates/uv-extract/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-extract" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-extract/README.md b/crates/uv-extract/README.md index ab7f44115..a1604615f 100644 --- a/crates/uv-extract/README.md +++ b/crates/uv-extract/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-extract). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-extract). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-flags/Cargo.toml b/crates/uv-flags/Cargo.toml index 10c371487..5d77b54ab 100644 --- a/crates/uv-flags/Cargo.toml +++ b/crates/uv-flags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-flags" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-flags/README.md b/crates/uv-flags/README.md index 99e7ad790..928fdf7db 100644 --- a/crates/uv-flags/README.md +++ b/crates/uv-flags/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-flags). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-flags). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-fs/Cargo.toml b/crates/uv-fs/Cargo.toml index 5b6bb1a64..14b503e25 100644 --- a/crates/uv-fs/Cargo.toml +++ b/crates/uv-fs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-fs" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-fs/README.md b/crates/uv-fs/README.md index 81ca96073..a32197754 100644 --- a/crates/uv-fs/README.md +++ b/crates/uv-fs/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-fs). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-fs). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-git-types/Cargo.toml b/crates/uv-git-types/Cargo.toml index 166df3ec6..66b99e334 100644 --- a/crates/uv-git-types/Cargo.toml +++ b/crates/uv-git-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-git-types" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-git-types/README.md b/crates/uv-git-types/README.md index 82260d496..2c1d53d9f 100644 --- a/crates/uv-git-types/README.md +++ b/crates/uv-git-types/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-git-types). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-git-types). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-git/Cargo.toml b/crates/uv-git/Cargo.toml index 0f9c29930..fd029999c 100644 --- a/crates/uv-git/Cargo.toml +++ b/crates/uv-git/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-git" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-git/README.md b/crates/uv-git/README.md index a972543a0..0e7f148d7 100644 --- a/crates/uv-git/README.md +++ b/crates/uv-git/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-git). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-git). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-globfilter/Cargo.toml b/crates/uv-globfilter/Cargo.toml index 2abcce9db..ed0811420 100644 --- a/crates/uv-globfilter/Cargo.toml +++ b/crates/uv-globfilter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-globfilter" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" readme = "README.md" edition = { workspace = true } diff --git a/crates/uv-install-wheel/Cargo.toml b/crates/uv-install-wheel/Cargo.toml index f94dba6cc..9e405358a 100644 --- a/crates/uv-install-wheel/Cargo.toml +++ b/crates/uv-install-wheel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-install-wheel" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" keywords = ["wheel", "python"] diff --git a/crates/uv-install-wheel/README.md b/crates/uv-install-wheel/README.md index 23e925dd7..4c452c8fe 100644 --- a/crates/uv-install-wheel/README.md +++ b/crates/uv-install-wheel/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-install-wheel). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-install-wheel). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-installer/Cargo.toml b/crates/uv-installer/Cargo.toml index e803f3c08..0108d29b6 100644 --- a/crates/uv-installer/Cargo.toml +++ b/crates/uv-installer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-installer" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-installer/README.md b/crates/uv-installer/README.md index 752a26a42..30a94e930 100644 --- a/crates/uv-installer/README.md +++ b/crates/uv-installer/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-installer). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-installer). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-keyring/Cargo.toml b/crates/uv-keyring/Cargo.toml index 8ee088fae..f3f25abc8 100644 --- a/crates/uv-keyring/Cargo.toml +++ b/crates/uv-keyring/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-keyring" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-logging/Cargo.toml b/crates/uv-logging/Cargo.toml index 18258d791..d414d3ec7 100644 --- a/crates/uv-logging/Cargo.toml +++ b/crates/uv-logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-logging" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-logging/README.md b/crates/uv-logging/README.md index 0ccf4eacc..5eebfbc9d 100644 --- a/crates/uv-logging/README.md +++ b/crates/uv-logging/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-logging). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-logging). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-macros/Cargo.toml b/crates/uv-macros/Cargo.toml index 1747ee713..9f5b9f013 100644 --- a/crates/uv-macros/Cargo.toml +++ b/crates/uv-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-macros" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-macros/README.md b/crates/uv-macros/README.md index fa134d31f..ee92e8f15 100644 --- a/crates/uv-macros/README.md +++ b/crates/uv-macros/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-macros). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-macros). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-metadata/Cargo.toml b/crates/uv-metadata/Cargo.toml index 882526ba7..82e6cc075 100644 --- a/crates/uv-metadata/Cargo.toml +++ b/crates/uv-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-metadata" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-metadata/README.md b/crates/uv-metadata/README.md index 71112fac6..e4217100b 100644 --- a/crates/uv-metadata/README.md +++ b/crates/uv-metadata/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-metadata). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-metadata). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-normalize/Cargo.toml b/crates/uv-normalize/Cargo.toml index 4861dfe26..b789ef409 100644 --- a/crates/uv-normalize/Cargo.toml +++ b/crates/uv-normalize/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-normalize" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-normalize/README.md b/crates/uv-normalize/README.md index 3d93dda65..324f72967 100644 --- a/crates/uv-normalize/README.md +++ b/crates/uv-normalize/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-normalize). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-normalize). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-once-map/Cargo.toml b/crates/uv-once-map/Cargo.toml index f5d818da4..915a14d09 100644 --- a/crates/uv-once-map/Cargo.toml +++ b/crates/uv-once-map/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-once-map" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-once-map/README.md b/crates/uv-once-map/README.md index 313da72f0..47cc8b331 100644 --- a/crates/uv-once-map/README.md +++ b/crates/uv-once-map/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-once-map). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-once-map). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-options-metadata/Cargo.toml b/crates/uv-options-metadata/Cargo.toml index ad86ede27..c250ac834 100644 --- a/crates/uv-options-metadata/Cargo.toml +++ b/crates/uv-options-metadata/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-options-metadata" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-options-metadata/README.md b/crates/uv-options-metadata/README.md index 1fc0c8794..42a4d7f5c 100644 --- a/crates/uv-options-metadata/README.md +++ b/crates/uv-options-metadata/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-options-metadata). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-options-metadata). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-pep440/Cargo.toml b/crates/uv-pep440/Cargo.toml index 905003a73..b659acd7b 100644 --- a/crates/uv-pep440/Cargo.toml +++ b/crates/uv-pep440/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-pep440" -version = "0.0.7" +version = "0.0.8" 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"] diff --git a/crates/uv-pep440/README.md b/crates/uv-pep440/README.md new file mode 100644 index 000000000..a632cf9a9 --- /dev/null +++ b/crates/uv-pep440/README.md @@ -0,0 +1,13 @@ + + +# uv-pep440 + +This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here +is unstable and will have frequent breaking changes. + +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pep440). + +See uv's +[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) +for details on versioning. diff --git a/crates/uv-pep440/Readme.md b/crates/uv-pep440/Readme.md deleted file mode 100644 index 8a6e142ca..000000000 --- a/crates/uv-pep440/Readme.md +++ /dev/null @@ -1,44 +0,0 @@ -# PEP440 in rust - -[![Crates.io](https://img.shields.io/crates/v/pep440_rs.svg?logo=rust&style=flat-square)](https://crates.io/crates/pep440_rs) -[![PyPI](https://img.shields.io/pypi/v/pep440_rs.svg?logo=python&style=flat-square)](https://pypi.org/project/pep440_rs) - -A library for python version numbers and specifiers, implementing -[PEP 440](https://peps.python.org/pep-0440). See -[Reimplementing PEP 440](https://cohost.org/konstin/post/514863-reimplementing-pep-4) for some -background. - -Higher level bindings to the requirements syntax are available in -[pep508_rs](https://github.com/konstin/pep508_rs). - -```rust -use std::str::FromStr; -use pep440_rs::{parse_version_specifiers, Version, VersionSpecifier}; - -let version = Version::from_str("1.19").unwrap(); -let version_specifier = VersionSpecifier::from_str("==1.*").unwrap(); -assert!(version_specifier.contains(&version)); -let version_specifiers = parse_version_specifiers(">=1.16, <2.0").unwrap(); -assert!(version_specifiers.contains(&version)); -``` - -PEP 440 has a lot of unintuitive features, including: - -- An epoch that you can prefix the version with, e.g., `1!1.2.3`. Lower epoch always means lower - version (`1.0 <=2!0.1`) -- Post versions, which can be attached to both stable releases and pre-releases -- Dev versions, which can be attached to both stable releases and pre-releases. When attached to a - pre-release the dev version is ordered just below the normal pre-release, however when attached to - a stable version, the dev version is sorted before a pre-releases -- Pre-release handling is a mess: "Pre-releases of any kind, including developmental releases, are - implicitly excluded from all version specifiers, unless they are already present on the system, - explicitly requested by the user, or if the only available version that satisfies the version - specifier is a pre-release.". This means that we can't say whether a specifier matches without - also looking at the environment -- Pre-release vs. pre-release incl. dev is fuzzy -- Local versions on top of all the others, which are added with a + and have implicitly typed string - and number segments -- No semver-caret (`^`), but a pseudo-semver tilde (`~=`) -- Ordering contradicts matching: We have, e.g., `1.0+local > 1.0` when sorting, but `==1.0` matches - `1.0+local`. While the ordering of versions itself is a total order the version matching needs to - catch all sorts of special cases diff --git a/crates/uv-pep508/Cargo.toml b/crates/uv-pep508/Cargo.toml index 783f11845..093927ced 100644 --- a/crates/uv-pep508/Cargo.toml +++ b/crates/uv-pep508/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-pep508" -version = "0.0.7" +version = "0.0.8" 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" diff --git a/crates/uv-pep508/README.md b/crates/uv-pep508/README.md new file mode 100644 index 000000000..34723269f --- /dev/null +++ b/crates/uv-pep508/README.md @@ -0,0 +1,13 @@ + + +# uv-pep508 + +This crate is an internal component of [uv](https://crates.io/crates/uv). The Rust API exposed here +is unstable and will have frequent breaking changes. + +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pep508). + +See uv's +[crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) +for details on versioning. diff --git a/crates/uv-pep508/Readme.md b/crates/uv-pep508/Readme.md deleted file mode 100644 index d2027d634..000000000 --- a/crates/uv-pep508/Readme.md +++ /dev/null @@ -1,31 +0,0 @@ -# Dependency specifiers (PEP 508) in Rust - -[![Crates.io](https://img.shields.io/crates/v/pep508_rs.svg?logo=rust&style=flat-square)](https://crates.io/crates/pep508_rs) -[![PyPI](https://img.shields.io/pypi/v/pep508_rs.svg?logo=python&style=flat-square)](https://pypi.org/project/pep508_rs) - -A library for -[dependency specifiers](https://packaging.python.org/en/latest/specifications/dependency-specifiers/), -previously known as [PEP 508](https://peps.python.org/pep-0508/). - -## Usage - -```rust -use std::str::FromStr; -use pep508_rs::Requirement; - -let marker = r#"requests [security,tests] >= 2.8.1, == 2.8.* ; python_version > "3.8""#; -let dependency_specification = Requirement::from_str(marker).unwrap(); -assert_eq!(dependency_specification.name, "requests"); -assert_eq!(dependency_specification.extras, Some(vec!["security".to_string(), "tests".to_string()])); -``` - -## Markers - -Markers allow you to install dependencies only in specific environments (python version, operating -system, architecture, etc.) or when a specific feature is activated. E.g., you can say -`importlib-metadata ; python_version < "3.8"` or `itsdangerous (>=1.1.0) ; extra == 'security'`. -Unfortunately, the marker grammar has some oversights (e.g. -) and the design of comparisons (PEP 440 -comparisons with lexicographic fallback) leads to confusing outcomes. This implementation tries to -carefully validate everything and emit warnings whenever bogus comparisons with unintended semantics -are made. diff --git a/crates/uv-performance-memory-allocator/Cargo.toml b/crates/uv-performance-memory-allocator/Cargo.toml index 4d64ea438..35b9a2bf9 100644 --- a/crates/uv-performance-memory-allocator/Cargo.toml +++ b/crates/uv-performance-memory-allocator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-performance-memory-allocator" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-performance-memory-allocator/README.md b/crates/uv-performance-memory-allocator/README.md index 51e770ba6..404de5a05 100644 --- a/crates/uv-performance-memory-allocator/README.md +++ b/crates/uv-performance-memory-allocator/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source can be found -[here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-performance-memory-allocator). +[here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-performance-memory-allocator). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-platform-tags/Cargo.toml b/crates/uv-platform-tags/Cargo.toml index 348639114..9c370517b 100644 --- a/crates/uv-platform-tags/Cargo.toml +++ b/crates/uv-platform-tags/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-platform-tags" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-platform-tags/README.md b/crates/uv-platform-tags/README.md index d255d3a45..93093c29d 100644 --- a/crates/uv-platform-tags/README.md +++ b/crates/uv-platform-tags/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-platform-tags). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-platform-tags). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-platform/Cargo.toml b/crates/uv-platform/Cargo.toml index 29bf623f0..f164773e9 100644 --- a/crates/uv-platform/Cargo.toml +++ b/crates/uv-platform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-platform" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-platform/README.md b/crates/uv-platform/README.md index 162dcde47..0e2a4b542 100644 --- a/crates/uv-platform/README.md +++ b/crates/uv-platform/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-platform). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-platform). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-preview/Cargo.toml b/crates/uv-preview/Cargo.toml index 42c9ff3bc..a505f056b 100644 --- a/crates/uv-preview/Cargo.toml +++ b/crates/uv-preview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-preview" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-preview/README.md b/crates/uv-preview/README.md index e9e30f95e..0fccc7df2 100644 --- a/crates/uv-preview/README.md +++ b/crates/uv-preview/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-preview). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-preview). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-publish/Cargo.toml b/crates/uv-publish/Cargo.toml index c16216923..a24a68f30 100644 --- a/crates/uv-publish/Cargo.toml +++ b/crates/uv-publish/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-publish" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-publish/README.md b/crates/uv-publish/README.md index 8774dcb65..d3c5613fe 100644 --- a/crates/uv-publish/README.md +++ b/crates/uv-publish/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-publish). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-publish). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-pypi-types/Cargo.toml b/crates/uv-pypi-types/Cargo.toml index 7b0529fb5..21c3c1621 100644 --- a/crates/uv-pypi-types/Cargo.toml +++ b/crates/uv-pypi-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-pypi-types" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-pypi-types/README.md b/crates/uv-pypi-types/README.md index 099f992f9..77847054b 100644 --- a/crates/uv-pypi-types/README.md +++ b/crates/uv-pypi-types/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-pypi-types). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-pypi-types). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-python/Cargo.toml b/crates/uv-python/Cargo.toml index 64b291ded..ce58124ab 100644 --- a/crates/uv-python/Cargo.toml +++ b/crates/uv-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-python" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-python/README.md b/crates/uv-python/README.md index a0eeaea1f..1673ac610 100644 --- a/crates/uv-python/README.md +++ b/crates/uv-python/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-python). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-python). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-redacted/Cargo.toml b/crates/uv-redacted/Cargo.toml index bab79c442..58ca740c2 100644 --- a/crates/uv-redacted/Cargo.toml +++ b/crates/uv-redacted/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-redacted" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-redacted/README.md b/crates/uv-redacted/README.md index 2e5748165..0994fa5ac 100644 --- a/crates/uv-redacted/README.md +++ b/crates/uv-redacted/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-redacted). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-redacted). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-requirements-txt/Cargo.toml b/crates/uv-requirements-txt/Cargo.toml index 03814b49f..4c431f59e 100644 --- a/crates/uv-requirements-txt/Cargo.toml +++ b/crates/uv-requirements-txt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-requirements-txt" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-requirements-txt/README.md b/crates/uv-requirements-txt/README.md index 4db728b0b..c963994c0 100644 --- a/crates/uv-requirements-txt/README.md +++ b/crates/uv-requirements-txt/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-requirements-txt). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-requirements-txt). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-requirements/Cargo.toml b/crates/uv-requirements/Cargo.toml index d0367428b..624452adc 100644 --- a/crates/uv-requirements/Cargo.toml +++ b/crates/uv-requirements/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-requirements" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-requirements/README.md b/crates/uv-requirements/README.md index 3186609ac..4a5f9e015 100644 --- a/crates/uv-requirements/README.md +++ b/crates/uv-requirements/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-requirements). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-requirements). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-resolver/Cargo.toml b/crates/uv-resolver/Cargo.toml index d8e253edb..84fd037ee 100644 --- a/crates/uv-resolver/Cargo.toml +++ b/crates/uv-resolver/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-resolver" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-resolver/README.md b/crates/uv-resolver/README.md index f4e0643d6..78106cd16 100644 --- a/crates/uv-resolver/README.md +++ b/crates/uv-resolver/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-resolver). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-resolver). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-scripts/Cargo.toml b/crates/uv-scripts/Cargo.toml index 2121a023e..3698af60c 100644 --- a/crates/uv-scripts/Cargo.toml +++ b/crates/uv-scripts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-scripts" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-scripts/README.md b/crates/uv-scripts/README.md index b9c315479..db90f0116 100644 --- a/crates/uv-scripts/README.md +++ b/crates/uv-scripts/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-scripts). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-scripts). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-settings/Cargo.toml b/crates/uv-settings/Cargo.toml index 80a6a2fc8..e32fc2894 100644 --- a/crates/uv-settings/Cargo.toml +++ b/crates/uv-settings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-settings" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-settings/README.md b/crates/uv-settings/README.md index ac0770dd2..f5b3d7c67 100644 --- a/crates/uv-settings/README.md +++ b/crates/uv-settings/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-settings). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-settings). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-shell/Cargo.toml b/crates/uv-shell/Cargo.toml index 18e7d9d95..9b60b65e0 100644 --- a/crates/uv-shell/Cargo.toml +++ b/crates/uv-shell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-shell" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-shell/README.md b/crates/uv-shell/README.md index 3fcbdee84..a023575a0 100644 --- a/crates/uv-shell/README.md +++ b/crates/uv-shell/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-shell). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-shell). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-small-str/Cargo.toml b/crates/uv-small-str/Cargo.toml index e23da38f1..aaa5cc265 100644 --- a/crates/uv-small-str/Cargo.toml +++ b/crates/uv-small-str/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-small-str" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-small-str/README.md b/crates/uv-small-str/README.md index 16a410ba0..4e8360873 100644 --- a/crates/uv-small-str/README.md +++ b/crates/uv-small-str/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-small-str). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-small-str). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-state/Cargo.toml b/crates/uv-state/Cargo.toml index 3cab0bc31..1d19a005a 100644 --- a/crates/uv-state/Cargo.toml +++ b/crates/uv-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-state" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-state/README.md b/crates/uv-state/README.md index 08fa001f0..b19252442 100644 --- a/crates/uv-state/README.md +++ b/crates/uv-state/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-state). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-state). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-static/Cargo.toml b/crates/uv-static/Cargo.toml index adb0a5f74..aa6a20170 100644 --- a/crates/uv-static/Cargo.toml +++ b/crates/uv-static/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-static" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-static/README.md b/crates/uv-static/README.md index 1c2a63ad1..4c8551813 100644 --- a/crates/uv-static/README.md +++ b/crates/uv-static/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-static). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-static). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-tool/Cargo.toml b/crates/uv-tool/Cargo.toml index 81fe99268..0aa962278 100644 --- a/crates/uv-tool/Cargo.toml +++ b/crates/uv-tool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-tool" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-tool/README.md b/crates/uv-tool/README.md index 3a0fd16d7..0ee47fa12 100644 --- a/crates/uv-tool/README.md +++ b/crates/uv-tool/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-tool). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-tool). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-torch/Cargo.toml b/crates/uv-torch/Cargo.toml index 96de0ed55..6e9d37483 100644 --- a/crates/uv-torch/Cargo.toml +++ b/crates/uv-torch/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-torch" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-torch/README.md b/crates/uv-torch/README.md index 15102a12a..79a6bb290 100644 --- a/crates/uv-torch/README.md +++ b/crates/uv-torch/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-torch). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-torch). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-trampoline-builder/Cargo.toml b/crates/uv-trampoline-builder/Cargo.toml index 0978cda5f..7dd34388a 100644 --- a/crates/uv-trampoline-builder/Cargo.toml +++ b/crates/uv-trampoline-builder/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-trampoline-builder" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } diff --git a/crates/uv-trampoline-builder/README.md b/crates/uv-trampoline-builder/README.md index ce711c633..9ddc9941e 100644 --- a/crates/uv-trampoline-builder/README.md +++ b/crates/uv-trampoline-builder/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-trampoline-builder). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-trampoline-builder). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-trampoline/Cargo.lock b/crates/uv-trampoline/Cargo.lock index 8a1ccfcad..79a797d16 100644 --- a/crates/uv-trampoline/Cargo.lock +++ b/crates/uv-trampoline/Cargo.lock @@ -118,7 +118,7 @@ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254" [[package]] name = "uv-macros" -version = "0.0.7" +version = "0.0.8" dependencies = [ "proc-macro2", "quote", @@ -128,7 +128,7 @@ dependencies = [ [[package]] name = "uv-static" -version = "0.0.7" +version = "0.0.8" dependencies = [ "uv-macros", ] diff --git a/crates/uv-types/Cargo.toml b/crates/uv-types/Cargo.toml index 5a8ab056d..7eab5d0e6 100644 --- a/crates/uv-types/Cargo.toml +++ b/crates/uv-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-types" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-types/README.md b/crates/uv-types/README.md index 37c546eb1..84c61397d 100644 --- a/crates/uv-types/README.md +++ b/crates/uv-types/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-types). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-types). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-version/Cargo.toml b/crates/uv-version/Cargo.toml index 44f41d945..2fa9876ab 100644 --- a/crates/uv-version/Cargo.toml +++ b/crates/uv-version/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-version" -version = "0.9.17" +version = "0.9.18" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-version/README.md b/crates/uv-version/README.md index 24db5910a..84d8919f1 100644 --- a/crates/uv-version/README.md +++ b/crates/uv-version/README.md @@ -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.9.17) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-version). +This version (0.9.18) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-version). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-virtualenv/Cargo.toml b/crates/uv-virtualenv/Cargo.toml index fc9e60e6f..6f0c25c76 100644 --- a/crates/uv-virtualenv/Cargo.toml +++ b/crates/uv-virtualenv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-virtualenv" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" keywords = ["virtualenv", "venv", "python"] diff --git a/crates/uv-warnings/Cargo.toml b/crates/uv-warnings/Cargo.toml index 3d8bf95f2..11e9c4b23 100644 --- a/crates/uv-warnings/Cargo.toml +++ b/crates/uv-warnings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-warnings" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-warnings/README.md b/crates/uv-warnings/README.md index 319e44f7c..ff61aff4b 100644 --- a/crates/uv-warnings/README.md +++ b/crates/uv-warnings/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-warnings). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-warnings). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv-workspace/Cargo.toml b/crates/uv-workspace/Cargo.toml index 816576618..99b5a1ea5 100644 --- a/crates/uv-workspace/Cargo.toml +++ b/crates/uv-workspace/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv-workspace" -version = "0.0.7" +version = "0.0.8" description = "This is an internal component crate of uv" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv-workspace/README.md b/crates/uv-workspace/README.md index 283b15349..06b6a25ef 100644 --- a/crates/uv-workspace/README.md +++ b/crates/uv-workspace/README.md @@ -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.7) is a component of [uv 0.9.17](https://crates.io/crates/uv/0.9.17). The source -can be found [here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv-workspace). +This version (0.0.8) is a component of [uv 0.9.18](https://crates.io/crates/uv/0.9.18). The source +can be found [here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv-workspace). See uv's [crate versioning policy](https://docs.astral.sh/uv/reference/policies/versioning/#crate-versioning) diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index 6ee6df13f..62b760283 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "uv" -version = "0.9.17" +version = "0.9.18" description = "A Python package and project manager" edition = { workspace = true } rust-version = { workspace = true } diff --git a/crates/uv/README.md b/crates/uv/README.md index 043439233..02c9d0de1 100644 --- a/crates/uv/README.md +++ b/crates/uv/README.md @@ -10,8 +10,8 @@ for more information. This crate is the entry point to the uv command-line interface. The Rust API exposed here is not considered public interface. -This is version 0.9.17. The source can be found -[here](https://github.com/astral-sh/uv/blob/0.9.17/crates/uv). +This is version 0.9.18. The source can be found +[here](https://github.com/astral-sh/uv/blob/0.9.18/crates/uv). The following uv workspace members are also available: diff --git a/docs/concepts/build-backend.md b/docs/concepts/build-backend.md index a17384264..62d394853 100644 --- a/docs/concepts/build-backend.md +++ b/docs/concepts/build-backend.md @@ -31,7 +31,7 @@ To use uv as a build backend in an existing project, add `uv_build` to the ```toml title="pyproject.toml" [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` diff --git a/docs/concepts/projects/init.md b/docs/concepts/projects/init.md index 7b1d89131..bfa6c5161 100644 --- a/docs/concepts/projects/init.md +++ b/docs/concepts/projects/init.md @@ -113,7 +113,7 @@ dependencies = [] example-pkg = "example_pkg:main" [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` @@ -136,7 +136,7 @@ dependencies = [] example-pkg = "example_pkg:main" [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` @@ -197,7 +197,7 @@ requires-python = ">=3.11" dependencies = [] [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` diff --git a/docs/concepts/projects/workspaces.md b/docs/concepts/projects/workspaces.md index 76373fbf8..d2416ede1 100644 --- a/docs/concepts/projects/workspaces.md +++ b/docs/concepts/projects/workspaces.md @@ -75,7 +75,7 @@ bird-feeder = { workspace = true } members = ["packages/*"] [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` @@ -106,7 +106,7 @@ tqdm = { git = "https://github.com/tqdm/tqdm" } members = ["packages/*"] [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` @@ -188,7 +188,7 @@ dependencies = ["bird-feeder", "tqdm>=4,<5"] bird-feeder = { path = "packages/bird-feeder" } [build-system] -requires = ["uv_build>=0.9.17,<0.10.0"] +requires = ["uv_build>=0.9.18,<0.10.0"] build-backend = "uv_build" ``` diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 2a1b7c8f3..a5490d058 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -25,7 +25,7 @@ uv provides a standalone installer to download and install uv: Request a specific version by including it in the URL: ```console - $ curl -LsSf https://astral.sh/uv/0.9.17/install.sh | sh + $ curl -LsSf https://astral.sh/uv/0.9.18/install.sh | sh ``` === "Windows" @@ -41,7 +41,7 @@ uv provides a standalone installer to download and install uv: Request a specific version by including it in the URL: ```pwsh-session - PS> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.9.17/install.ps1 | iex" + PS> powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/0.9.18/install.ps1 | iex" ``` !!! tip diff --git a/docs/guides/integration/aws-lambda.md b/docs/guides/integration/aws-lambda.md index aa4905a5c..e88496062 100644 --- a/docs/guides/integration/aws-lambda.md +++ b/docs/guides/integration/aws-lambda.md @@ -92,7 +92,7 @@ the second stage, we'll copy this directory over to the final image, omitting th other unnecessary files. ```dockerfile title="Dockerfile" -FROM ghcr.io/astral-sh/uv:0.9.17 AS uv +FROM ghcr.io/astral-sh/uv:0.9.18 AS uv # First, bundle the dependencies into the task root. FROM public.ecr.aws/lambda/python:3.13 AS builder @@ -334,7 +334,7 @@ And confirm that opening http://127.0.0.1:8000/ in a web browser displays, "Hell Finally, we'll update the Dockerfile to include the local library in the deployment package: ```dockerfile title="Dockerfile" -FROM ghcr.io/astral-sh/uv:0.9.17 AS uv +FROM ghcr.io/astral-sh/uv:0.9.18 AS uv # First, bundle the dependencies into the task root. FROM public.ecr.aws/lambda/python:3.13 AS builder diff --git a/docs/guides/integration/docker.md b/docs/guides/integration/docker.md index 5b54202b7..fe1d8f22d 100644 --- a/docs/guides/integration/docker.md +++ b/docs/guides/integration/docker.md @@ -31,7 +31,7 @@ $ docker run --rm -it ghcr.io/astral-sh/uv:debian uv --help The following distroless images are available: - `ghcr.io/astral-sh/uv:latest` -- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.9.17` +- `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}`, e.g., `ghcr.io/astral-sh/uv:0.9.18` - `ghcr.io/astral-sh/uv:{major}.{minor}`, e.g., `ghcr.io/astral-sh/uv:0.8` (the latest patch version) @@ -95,7 +95,7 @@ And the following derived images are available: As with the distroless image, each derived image is published with uv version tags as `ghcr.io/astral-sh/uv:{major}.{minor}.{patch}-{base}` and -`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.9.17-alpine`. +`ghcr.io/astral-sh/uv:{major}.{minor}-{base}`, e.g., `ghcr.io/astral-sh/uv:0.9.18-alpine`. In addition, starting with `0.8` each derived image also sets `UV_TOOL_BIN_DIR` to `/usr/local/bin` to allow `uv tool install` to work as expected with the default user. @@ -136,7 +136,7 @@ Note this requires `curl` to be available. In either case, it is best practice to pin to a specific uv version, e.g., with: ```dockerfile -COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.18 /uv /uvx /bin/ ``` !!! tip @@ -154,7 +154,7 @@ COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/ Or, with the installer: ```dockerfile -ADD https://astral.sh/uv/0.9.17/install.sh /uv-installer.sh +ADD https://astral.sh/uv/0.9.18/install.sh /uv-installer.sh ``` ### Installing a project @@ -611,5 +611,5 @@ Verified OK !!! tip These examples use `latest`, but best practice is to verify the attestation for a specific - version tag, e.g., `ghcr.io/astral-sh/uv:0.9.17`, or (even better) the specific image digest, + version tag, e.g., `ghcr.io/astral-sh/uv:0.9.18`, or (even better) the specific image digest, such as `ghcr.io/astral-sh/uv:0.5.27@sha256:5adf09a5a526f380237408032a9308000d14d5947eafa687ad6c6a2476787b4f`. diff --git a/docs/guides/integration/github.md b/docs/guides/integration/github.md index ffdd70ab0..e7bd4b8c1 100644 --- a/docs/guides/integration/github.md +++ b/docs/guides/integration/github.md @@ -47,7 +47,7 @@ jobs: uses: astral-sh/setup-uv@v7 with: # Install a specific version of uv. - version: "0.9.17" + version: "0.9.18" ``` ## Setting up Python diff --git a/docs/guides/integration/gitlab.md b/docs/guides/integration/gitlab.md index 4ee1f2c2c..e8c145593 100644 --- a/docs/guides/integration/gitlab.md +++ b/docs/guides/integration/gitlab.md @@ -13,7 +13,7 @@ Select a variant that is suitable for your workflow. ```yaml title="gitlab-ci.yml" variables: - UV_VERSION: "0.9.17" + UV_VERSION: "0.9.18" PYTHON_VERSION: "3.12" BASE_LAYER: bookworm-slim # GitLab CI creates a separate mountpoint for the build directory, diff --git a/docs/guides/integration/pre-commit.md b/docs/guides/integration/pre-commit.md index 94f140e7c..da1214aa3 100644 --- a/docs/guides/integration/pre-commit.md +++ b/docs/guides/integration/pre-commit.md @@ -19,7 +19,7 @@ To make sure your `uv.lock` file is up to date even if your `pyproject.toml` fil repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.17 + rev: 0.9.18 hooks: - id: uv-lock ``` @@ -30,7 +30,7 @@ To keep a `requirements.txt` file in sync with your `uv.lock` file: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.17 + rev: 0.9.18 hooks: - id: uv-export ``` @@ -41,7 +41,7 @@ To compile requirements files: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.17 + rev: 0.9.18 hooks: # Compile requirements - id: pip-compile @@ -54,7 +54,7 @@ To compile alternative requirements files, modify `args` and `files`: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.17 + rev: 0.9.18 hooks: # Compile requirements - id: pip-compile @@ -68,7 +68,7 @@ To run the hook over multiple files at the same time, add additional entries: repos: - repo: https://github.com/astral-sh/uv-pre-commit # uv version. - rev: 0.9.17 + rev: 0.9.18 hooks: # Compile requirements - id: pip-compile diff --git a/pyproject.toml b/pyproject.toml index 38b06bb5f..29218b568 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "uv" -version = "0.9.17" +version = "0.9.18" description = "An extremely fast Python package and project manager, written in Rust." authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] requires-python = ">=3.8"