From 1a3fc9052d4305b3e65e4439b67a3d93e15f6d5e Mon Sep 17 00:00:00 2001 From: kpcyrd Date: Mon, 21 Nov 2022 21:17:52 +0100 Subject: [PATCH] Release v0.4.0 --- Cargo.lock | 8 ++++---- Cargo.toml | 20 ++++++++++---------- pacman-bintrans-common/Cargo.toml | 2 +- pacman-bintrans-monitor/Cargo.toml | 4 ++-- pacman-bintrans-sign/Cargo.toml | 4 ++-- 5 files changed, 19 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d530b66..0d7fd29 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1041,7 +1041,7 @@ checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" [[package]] name = "pacman-bintrans" -version = "0.3.0" +version = "0.4.0" dependencies = [ "clap", "env_logger", @@ -1063,7 +1063,7 @@ dependencies = [ [[package]] name = "pacman-bintrans-common" -version = "0.3.0" +version = "0.4.0" dependencies = [ "anyhow", "base64", @@ -1080,7 +1080,7 @@ dependencies = [ [[package]] name = "pacman-bintrans-monitor" -version = "0.3.0" +version = "0.4.0" dependencies = [ "clap", "env_logger", @@ -1090,7 +1090,7 @@ dependencies = [ [[package]] name = "pacman-bintrans-sign" -version = "0.3.0" +version = "0.4.0" dependencies = [ "clap", "diesel", diff --git a/Cargo.toml b/Cargo.toml index 552c004..e90cb7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pacman-bintrans" -version = "0.3.0" +version = "0.4.0" description = "Binary transparency for pacman" authors = ["kpcyrd "] license = "GPL-3.0" @@ -15,19 +15,19 @@ members = ["pacman-bintrans-sign", "pacman-bintrans-common"] [dependencies] -pacman-bintrans-common = { version = "0.3", path = "pacman-bintrans-common" } +clap = { version = "4.0.26", features = ["derive"] } env_logger = "0.9" -tokio = { version = "1", features = ["process", "macros", "rt-multi-thread", "time"] } futures-util = "0.3.5" -toml = "0.5.6" -serde = "1.0.115" -tempfile = "3.2.0" -minisign = "0.7" -url = "2.2.2" -sha2 = "0.10" hex = "0.4.3" indicatif = "0.16.2" +minisign = "0.7" +pacman-bintrans-common = { version = "0.4", path = "pacman-bintrans-common" } rebuilderd-common = "0.19" +serde = "1.0.115" serde_json = "1.0.73" +sha2 = "0.10" tar = "0.4.38" -clap = { version = "4.0.26", features = ["derive"] } +tempfile = "3.2.0" +tokio = { version = "1", features = ["process", "macros", "rt-multi-thread", "time"] } +toml = "0.5.6" +url = "2.2.2" diff --git a/pacman-bintrans-common/Cargo.toml b/pacman-bintrans-common/Cargo.toml index 717b371..dd945d6 100644 --- a/pacman-bintrans-common/Cargo.toml +++ b/pacman-bintrans-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pacman-bintrans-common" -version = "0.3.0" +version = "0.4.0" description = "Binary transparency for pacman - common code" authors = ["kpcyrd "] license = "LGPL-3.0" diff --git a/pacman-bintrans-monitor/Cargo.toml b/pacman-bintrans-monitor/Cargo.toml index 32f79c8..a77bee4 100644 --- a/pacman-bintrans-monitor/Cargo.toml +++ b/pacman-bintrans-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pacman-bintrans-monitor" -version = "0.3.0" +version = "0.4.0" description = "Binary transparency for pacman - monitor tools" authors = ["kpcyrd "] license = "GPL-3.0" @@ -13,5 +13,5 @@ edition = "2018" [dependencies] clap = { version = "4.0.26", features = ["derive"] } env_logger = "0.9.0" -pacman-bintrans-common = { version = "0.3", path = "../pacman-bintrans-common" } +pacman-bintrans-common = { version = "0.4", path = "../pacman-bintrans-common" } tokio = { version = "1.10.0", features = ["process", "macros", "rt-multi-thread"] } diff --git a/pacman-bintrans-sign/Cargo.toml b/pacman-bintrans-sign/Cargo.toml index 77fc1f0..133f831 100644 --- a/pacman-bintrans-sign/Cargo.toml +++ b/pacman-bintrans-sign/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pacman-bintrans-sign" -version = "0.3.0" +version = "0.4.0" description = "Binary transparency for pacman - signing tools" authors = ["kpcyrd "] license = "GPL-3.0" @@ -16,7 +16,7 @@ diesel = { version = "1.4", features = ["sqlite"] } diesel_migrations = { version = "1.4", features = ["sqlite"] } env_logger = "0.9.0" minisign = "0.7" -pacman-bintrans-common = { version = "0.3", path = "../pacman-bintrans-common" } +pacman-bintrans-common = { version = "0.4", path = "../pacman-bintrans-common" } tar = "0.4.37" tempfile = "3.2.0" tokio = { version = "1.10.0", features = ["process", "macros", "rt-multi-thread"] }