From 1c6581ced6b7e4f89973d040c2a51084538d41fc Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 18 Feb 2025 08:07:27 +0000 Subject: [PATCH] Set next major version for google-(apis|clis)-common, and the crates --- etc/api/shared.yaml | 2 +- google-apis-common/Cargo.toml | 2 +- google-clis-common/Cargo.toml | 2 +- src/generator/templates/Cargo.toml.mako | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/etc/api/shared.yaml b/etc/api/shared.yaml index 6a30a89932..30c41c0c2a 100644 --- a/etc/api/shared.yaml +++ b/etc/api/shared.yaml @@ -96,7 +96,7 @@ directories: # The subdirectory to contain documentation from all APIs and related programs doc_subdir: doc cargo: - build_version: "6.0.0" + build_version: "7.0.0" repo_base_url: https://github.com/Byron/google-apis-rs authors: # don't forget to possibly add them to copyright authors diff --git a/google-apis-common/Cargo.toml b/google-apis-common/Cargo.toml index d00fb2b6bf..768952590f 100644 --- a/google-apis-common/Cargo.toml +++ b/google-apis-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "google-apis-common" -version = "7.0.0" +version = "8.0.0" authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/google-apis-rs" homepage = "https://github.com/Byron/google-apis-rs/google-apis-common" diff --git a/google-clis-common/Cargo.toml b/google-clis-common/Cargo.toml index 67f5b4232c..c9a35243a5 100644 --- a/google-clis-common/Cargo.toml +++ b/google-clis-common/Cargo.toml @@ -2,7 +2,7 @@ # This library is just to try out the code that should ultimately go into the code generator ! [package] name = "google-clis-common" -version = "7.0.0" +version = "8.0.0" authors = ["Sebastian Thiel "] repository = "https://github.com/Byron/google-apis-rs" homepage = "https://github.com/Byron/google-apis-rs/google-clis-common" diff --git a/src/generator/templates/Cargo.toml.mako b/src/generator/templates/Cargo.toml.mako index 354aa54fa9..083dddd6a0 100644 --- a/src/generator/templates/Cargo.toml.mako +++ b/src/generator/templates/Cargo.toml.mako @@ -49,9 +49,9 @@ url = "2" utoipa = { version = "4", optional = true } yup-oauth2 = { version = "12", default-features = false, optional = true } -google-apis-common = { path = "../../google-apis-common", version = "7" } +google-apis-common = { path = "../../google-apis-common", version = "8" } % if cargo.get('is_executable'): -google-clis-common = { path = "../../google-clis-common", version = "7" } +google-clis-common = { path = "../../google-clis-common", version = "8" } % endif <%