diff --git a/Cargo.toml b/Cargo.toml index ccad440a..dcaf6640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcloud" -version = "0.19.0" # also set in openapi-generator.yaml and regenerate API code +version = "0.20.0" # also set in openapi-generator.yaml and regenerate API code authors = ["Henning Holm "] edition = "2021" license = "MIT OR Apache-2.0" diff --git a/openapi-generator.yaml b/openapi-generator.yaml index b3b89a87..40013a1c 100644 --- a/openapi-generator.yaml +++ b/openapi-generator.yaml @@ -1,4 +1,4 @@ -httpUserAgent: hcloud-rust/0.19.0 +httpUserAgent: hcloud-rust/0.20.0 library: reqwest supportAsync: true supportMultipleResponses: false diff --git a/src/apis/configuration.rs b/src/apis/configuration.rs index 41e6fca4..6872f43f 100644 --- a/src/apis/configuration.rs +++ b/src/apis/configuration.rs @@ -38,7 +38,7 @@ impl Default for Configuration { fn default() -> Self { Configuration { base_path: "https://api.hetzner.cloud/v1".to_owned(), - user_agent: Some("hcloud-rust/0.19.0".to_owned()), + user_agent: Some("hcloud-rust/0.20.0".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None,