diff --git a/.gitignore b/.gitignore index 9bb2905..9a806de 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /target -DemoConfig \ No newline at end of file +DemoConfig +.idea/ diff --git a/brew_bottle.sh b/brew_bottle.sh index 70dafd8..e587d2f 100755 --- a/brew_bottle.sh +++ b/brew_bottle.sh @@ -43,9 +43,7 @@ build_artifacts() { } create_github_release() { - gh release create -t "$VERSION" -n "Release $VERSION" $VERSION *.bottle.tar.gz - gh workflow run bottle --raw-field versionString=$VERSION - + gh release create --generate-notes $VERSION *.bottle.tar.gz } # tests that a command exists diff --git a/crates/kr/src/cli.rs b/crates/kr/src/cli.rs index 60e8801..9a178ee 100644 --- a/crates/kr/src/cli.rs +++ b/crates/kr/src/cli.rs @@ -4,7 +4,7 @@ use clap::Clap; /// as do all doc strings on fields #[derive(Clap)] #[clap( - version = "1.0", + version = "1.1.0", author = "Akamai MFA ", name = "akr - Akamai Krypton" )]