Skip to content

v0.2.0

Choose a tag to compare

@github-actions github-actions released this 06 Jan 14:10
· 722 commits to develop since this release
bb319fe

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/v0.2.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/v0.2.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/v0.2.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

  • feat: add --exclude option to filter packages from SBOM by @Taketo-Yoda in #3
  • ci: trigger workflow on push for all branches by @Taketo-Yoda in #7
  • ci: consolidate release and PyPI publish workflows by @Taketo-Yoda in #8
  • Refactor: Apply Strategy Pattern to formatter selection by @Taketo-Yoda in #13
  • docs: remove hardcoded test counts and outdated structure by @Taketo-Yoda in #14
  • docs: add status badges to README files by @Taketo-Yoda in #16
  • feat: Improve CLI UX with startup banner and rich progress bar (v0.2.0) by @Taketo-Yoda in #17
  • Release: Merge develop into main by @Taketo-Yoda in #18

New Contributors

Full Changelog: v0.1.0...v0.2.0