Skip to content

v2.0.0

Choose a tag to compare

@github-actions github-actions released this 15 Mar 04:47
· 370 commits to develop since this release
da8572c

Installation

Cargo

cargo install uv-sbom

Python (PyPI)

pip install uv-sbom-bin

Pre-built Binaries

macOS (Apple Silicon):

curl -LO https://github.com/Taketo-Yoda/uv-sbom/releases/download/v2.0.0/uv-sbom-aarch64-apple-darwin.tar.gz
tar xzf uv-sbom-aarch64-apple-darwin.tar.gz
sudo mv uv-sbom /usr/local/bin/

macOS (Intel):

curl -LO https://github.com/Taketo-Yoda/uv-sbom/releases/download/v2.0.0/uv-sbom-x86_64-apple-darwin.tar.gz
tar xzf uv-sbom-x86_64-apple-darwin.tar.gz
sudo mv uv-sbom /usr/local/bin/

Linux (x86_64):

curl -LO https://github.com/Taketo-Yoda/uv-sbom/releases/download/v2.0.0/uv-sbom-x86_64-unknown-linux-gnu.tar.gz
tar xzf uv-sbom-x86_64-unknown-linux-gnu.tar.gz
sudo mv uv-sbom /usr/local/bin/

Windows:
Download the .zip file below and extract to your desired location.

Verify Installation

uv-sbom --version

See the README for full documentation.

What's Changed

  • fix(skills): regenerate Cargo.lock and include it in release commit by @Taketo-Yoda in #289
  • docs: add product vision and output design principles for AI-driven development by @Taketo-Yoda in #290
  • feat(i18n): add Locale enum and Messages struct for multilingual support by @Taketo-Yoda in #297
  • feat(cli): add --lang flag and propagate Locale through pipeline by @Taketo-Yoda in #298
  • feat(i18n): localize MarkdownFormatter using Messages struct by @Taketo-Yoda in #299
  • chore(deps): bump quinn-proto from 0.11.13 to 0.11.14 by @dependabot[bot] in #300
  • chore(deps): bump the dependencies group with 3 updates by @dependabot[bot] in #302
  • feat(i18n): localize progress and warning messages using Messages struct by @Taketo-Yoda in #301
  • test(i18n): add integration tests and README docs for --lang option by @Taketo-Yoda in #303
  • feat(cli): enable CVE check by default and add --no-check-cve flag by @Taketo-Yoda in #307
  • feat(i18n): localize stderr progress messages in GenerateSbomUseCase for --lang option by @Taketo-Yoda in #310
  • fix(i18n): localize all hardcoded English strings in MarkdownFormatter for --lang ja by @Taketo-Yoda in #318
  • test(e2e): add E2E tests for --lang CLI option by @Taketo-Yoda in #319
  • chore(release): prepare v2.0.0 by @Taketo-Yoda in #321
  • chore(release): v2.0.0 by @Taketo-Yoda in #322

Full Changelog: v1.3.0...v2.0.0