From c9632f4bb13cc0a98f47168e44b8692f4cd86d46 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Fri, 1 May 2026 16:27:16 +0300 Subject: [PATCH] Update package version to 0.9.0 --- pkg.info | 6 ++++-- source.sh | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pkg.info b/pkg.info index 39d1751..e279cac 100644 --- a/pkg.info +++ b/pkg.info @@ -1,9 +1,11 @@ name: cargo-about description: Cargo plugin to generate list of all licenses for a crate -version: 0.8.4 +version: 0.9.0 revision: 1 url: https://github.com/EmbarkStudios/cargo-about license: Apache-2.0,MIT +maintainers: + - enumdev@enumerated.dev architecture: any type: source depends: @@ -13,4 +15,4 @@ downloads: - url: https://github.com/EmbarkStudios/cargo-about/archive/refs/tags/${BPM_PKG_VERSION}.tar.gz extract_to: ${BPM_SOURCE} extract_strip_components: 1 - checksum: 956cea9d2170936e7d53d1a8c951242332777be89bff4b8531066bff584fbcd3 + checksum: 7dc9b5f87d25b57c044618655a1948857bd03196e3b20cbb8700b41ad6f1614f diff --git a/source.sh b/source.sh index 6e7bd77..1443717 100644 --- a/source.sh +++ b/source.sh @@ -12,13 +12,13 @@ prepare() { # The build function is executed in the source directory # This function is used to compile the source code build() { - cargo build --release --frozen + cargo build --release --frozen --features cli } # The check function is executed in the source directory # This function is used to run tests to verify the package has been compiled correctly check() { - cargo test --frozen + cargo test --frozen --features cli } # The package function is executed in the source directory