Skip to content
This repository has been archived by the owner on Sep 26, 2023. It is now read-only.

feat: promote to 2.0.0 #1444

Merged
merged 3 commits into from Jul 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/release-please.yml
@@ -1,5 +1,6 @@
releaseType: java-yoshi
bumpMinorPreMajor: true
handleGHRelease: true
branches:
- releaseType: java-lts
bumpMinorPreMajor: true
Expand Down
4 changes: 2 additions & 2 deletions gax-grpc/BUILD.bazel
Expand Up @@ -2,9 +2,9 @@ load("//:gax_java.bzl", "google_java_format", "google_java_format_verification",

_JAVA_COPTS = [
"-source",
"1.7",
"1.8",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it can be just 8, but good enough (1.8 and 8 are synnonyms, but there is no 1.9 and above, just 9, 10, 11...)

"-target",
"1.7",
"1.8",
]

_COMPILE_DEPS = [
Expand Down
4 changes: 2 additions & 2 deletions gax-httpjson/BUILD.bazel
Expand Up @@ -2,9 +2,9 @@ load("//:gax_java.bzl", "google_java_format", "google_java_format_verification",

_JAVA_COPTS = [
"-source",
"1.7",
"1.8",
"-target",
"1.7",
"1.8",
]

_COMPILE_DEPS = [
Expand Down
4 changes: 2 additions & 2 deletions gax/BUILD.bazel
Expand Up @@ -2,9 +2,9 @@ load("//:gax_java.bzl", "google_java_format", "google_java_format_verification",

_JAVA_COPTS = [
"-source",
"1.7",
"1.8",
"-target",
"1.7",
"1.8",
]

_COMPILE_DEPS = [
Expand Down