diff --git a/Cargo.lock b/Cargo.lock index 8ca23b5..e05ce6e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -729,7 +729,7 @@ dependencies = [ [[package]] name = "nexus_badges" -version = "0.2.1" +version = "0.3.0" dependencies = [ "base64", "clap", diff --git a/Cargo.toml b/Cargo.toml index 07c6152..2a967b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "nexus_badges" -version = "0.2.1" +version = "0.3.0" edition = "2021" [package.metadata.winresource] ProductName = "Nexus Badges" FileDescription = "Badge generator" -ProductVersion = "0.2.1" +ProductVersion = "0.3.0" [dependencies] base64 = "0.22.1" diff --git a/build.rs b/build.rs index 0da12db..8a55bcb 100644 --- a/build.rs +++ b/build.rs @@ -3,8 +3,8 @@ extern crate winresource; /// `MAJOR << 48 | MINOR << 32 | PATCH << 16 | RELEASE` const MAJOR: u64 = 0; -const MINOR: u64 = 2; -const PATCH: u64 = 1; +const MINOR: u64 = 3; +const PATCH: u64 = 0; const RELEASE: u64 = 0; fn main() { diff --git a/src/models/cli.rs b/src/models/cli.rs index 3254f80..c9c399a 100644 --- a/src/models/cli.rs +++ b/src/models/cli.rs @@ -26,16 +26,16 @@ pub enum Commands { /// Initalize private gist to be used as a json endpoint for badge download counters Init, - /// Initalize GitHub actions to run the binary at scheduled times + /// Initalize GitHub actions to update the remote gist once daily InitActions, - /// Set the state for download counter automation via GitHub actions + /// Enable/Disable the GitHub action automation workflow Automation { #[arg(value_enum)] state: Workflow, }, - /// Display current version + /// Display current version and check for updates Version, /// Remove previous cache and update the cache repository variable [Not supported on local]