Skip to content

Commit

Permalink
bump to v0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLordRuby committed Oct 27, 2024
1 parent 412e1b4 commit b501edb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
6 changes: 3 additions & 3 deletions src/models/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit b501edb

Please sign in to comment.