From d4e03798eb19b18702136a649d839a0ed7ec0a04 Mon Sep 17 00:00:00 2001 From: Henning Holm Date: Fri, 25 Aug 2023 10:13:51 +0200 Subject: [PATCH] Bump crate version to 0.16.0 --- Cargo.toml | 2 +- openapi-generator.yaml | 2 +- src/apis/configuration.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d40764d1..08cb47fb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcloud" -version = "0.15.0" # also set in openapi-generator.yaml and regenerate API code +version = "0.16.0" # also set in openapi-generator.yaml and regenerate API code authors = ["Henning Holm "] edition = "2018" license = "MIT OR Apache-2.0" diff --git a/openapi-generator.yaml b/openapi-generator.yaml index 6483f9d9..2a705c21 100644 --- a/openapi-generator.yaml +++ b/openapi-generator.yaml @@ -1,4 +1,4 @@ -httpUserAgent: hcloud-rust/0.15.0 +httpUserAgent: hcloud-rust/0.16.0 library: reqwest supportAsync: true supportMultipleResponses: false diff --git a/src/apis/configuration.rs b/src/apis/configuration.rs index f52fd5f2..74eecbe9 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.15.0".to_owned()), + user_agent: Some("hcloud-rust/0.16.0".to_owned()), client: reqwest::Client::new(), basic_auth: None, oauth_access_token: None,