diff --git a/CHANGELOG.md b/CHANGELOG.md index 34373da..63b9902 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [1.12.1](https://github.com/edenreich/kopgen/compare/v1.12.0...v1.12.1) (2024-11-25) + +### Bug Fixes + +* Update version extraction in install script for improved reliability ([205212c](https://github.com/edenreich/kopgen/commit/205212cb9e15a3460a337b78cd8cbd24c4446b08)) + ## [1.12.0](https://github.com/edenreich/kopgen/compare/v1.11.0...v1.12.0) (2024-11-22) ### Features diff --git a/Cargo.lock b/Cargo.lock index 564ad92..24ea6c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -458,7 +458,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "kopgen" -version = "1.12.0" +version = "1.12.1" dependencies = [ "Inflector", "askama", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 337c592..33c44d9 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kopgen" -version = "1.12.0" +version = "1.12.1" edition = "2021" description = "Generate the Kubernetes operator rust code and manifests from the OpenAPI spec" diff --git a/cli/src/cli.rs b/cli/src/cli.rs index 68eaa18..a894704 100644 --- a/cli/src/cli.rs +++ b/cli/src/cli.rs @@ -6,7 +6,7 @@ use clap::{Parser, Subcommand}; #[derive(Parser)] #[command( name = "Kubernetes Operator Generator (kopgen)", - version = "v1.12.0", + version = "v1.12.1", author = "Eden Reich ", arg_required_else_help = true )]