diff --git a/Cargo.toml b/Cargo.toml index d4259f9a..5fea0df6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcloud" -version = "0.20.0" # also set in openapi-generator.yaml and regenerate API code +version = "0.20.1" # 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 40013a1c..df745e3b 100644 --- a/openapi-generator.yaml +++ b/openapi-generator.yaml @@ -1,4 +1,4 @@ -httpUserAgent: hcloud-rust/0.20.0 +httpUserAgent: hcloud-rust/0.20.1 library: reqwest supportAsync: true supportMultipleResponses: false diff --git a/src/apis/configuration.rs b/src/apis/configuration.rs index 6872f43f..25349473 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.20.0".to_owned()), + user_agent: Some("hcloud-rust/0.20.1".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None,