From 60e2b7debedf61c31d75e0522aec69413ac785bb Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Thu, 3 Dec 2020 09:26:03 +0000
Subject: [PATCH 1/7] chore: release 0.118.6-SNAPSHOT (#324)
:robot: I have created a release \*beep\* \*boop\*
---
### Updating meta-information for bleeding-edge SNAPSHOT release.
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please).
---
pom.xml | 4 ++--
versions.txt | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/pom.xml b/pom.xml
index 1d6b874b..ab0d4f05 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-resourcemanager
jar
- 0.118.5-alpha
+ 0.118.6-alpha-SNAPSHOT
Google Cloud Resource Manager
https://github.com/googleapis/java-resourcemanager
@@ -70,7 +70,7 @@
com.google.cloud
google-cloud-resourcemanager
- 0.118.5-alpha
+ 0.118.6-alpha-SNAPSHOT
com.google.cloud
diff --git a/versions.txt b/versions.txt
index 06690cd0..64cc050a 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-resourcemanager:0.118.5-alpha:0.118.5-alpha
\ No newline at end of file
+google-cloud-resourcemanager:0.118.5-alpha:0.118.6-alpha-SNAPSHOT
\ No newline at end of file
From 2ffb8062e0170613cf4bf914da0f2f2dca2583a0 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Thu, 3 Dec 2020 01:46:03 -0800
Subject: [PATCH 2/7] chore: regenerate README (#325)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2020-12-03 09:29:25,485 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-resourcemanager/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2020-12-03 09:29:26,347 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/915ca56b-2e67-4cdc-96e9-664dad74be61/targets
- [ ] To automatically regenerate this PR, check this box.
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index f1774371..1132102c 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-resourcemanager.git",
- "sha": "ad94b6c29a63ce41eb42cb4a50a9dc651afe5741"
+ "sha": "60e2b7debedf61c31d75e0522aec69413ac785bb"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "39b7149da4026765385403632db3c6f63db96b2c"
+ "sha": "f94318521f63085b9ccb43d42af89f153fb39f15"
}
}
]
diff --git a/README.md b/README.md
index dcf47580..f25a150e 100644
--- a/README.md
+++ b/README.md
@@ -48,11 +48,11 @@ If you are using Maven without BOM, add this to your dependencies:
If you are using Gradle, add this to your dependencies
```Groovy
-compile 'com.google.cloud:google-cloud-resourcemanager:0.118.4-alpha'
+compile 'com.google.cloud:google-cloud-resourcemanager:0.118.5-alpha'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.118.4-alpha"
+libraryDependencies += "com.google.cloud" % "google-cloud-resourcemanager" % "0.118.5-alpha"
```
## Authentication
From b361908f4b4e52d12d0e4b0b7de4a51544557715 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Tue, 8 Dec 2020 11:24:10 -0800
Subject: [PATCH 3/7] chore: Update publish_javadoc.sh (#328)
This PR was generated using Autosynth. :rainbow:
Synth log will be available here:
https://source.cloud.google.com/results/invocations/95830441-3e3c-4290-af74-43c2458e15db/targets
- [ ] To automatically regenerate this PR, check this box.
Source-Link: https://github.com/googleapis/synthtool/commit/5d11bd2888c38ce1fb6fa6bf25494a4219a73928
---
.kokoro/release/publish_javadoc.sh | 7 ++++---
synth.metadata | 4 ++--
2 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh
index f7b7e549..2b084474 100755
--- a/.kokoro/release/publish_javadoc.sh
+++ b/.kokoro/release/publish_javadoc.sh
@@ -38,8 +38,8 @@ python3 -m pip install gcp-docuploader
# compile all packages
mvn clean install -B -q -DskipTests=true
-NAME=google-cloud-resourcemanager
-VERSION=$(grep ${NAME}: versions.txt | cut -d: -f3)
+export NAME=google-cloud-resourcemanager
+export VERSION=$(grep ${NAME}: versions.txt | cut -d: -f3)
# build the docs
mvn site -B -q
@@ -59,7 +59,8 @@ python3 -m docuploader upload . \
popd
-# V2
+# V2 due to problems w/ the released javadoc plugin doclava, Java 8 is required. Beware of accidental updates.
+
mvn clean site -B -q -Ddevsite.template="${KOKORO_GFILE_DIR}/java/"
pushd target/devsite/reference
diff --git a/synth.metadata b/synth.metadata
index c0e574af..4b5d1f53 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-resourcemanager.git",
- "sha": "1bc858b571c33e15744213057cf48fb9f82032f4"
+ "sha": "2ffb8062e0170613cf4bf914da0f2f2dca2583a0"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "943bb78606d035001123030067dffcc34f4645f2"
+ "sha": "5d11bd2888c38ce1fb6fa6bf25494a4219a73928"
}
}
],
From 7bd94d449554da66b73e8e3565d44584876df4bd Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Mon, 14 Dec 2020 20:54:24 +0100
Subject: [PATCH 4/7] chore(deps): update dependency
com.google.cloud:google-cloud-resourcemanager to v0.118.5-alpha (#322)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [com.google.cloud:google-cloud-resourcemanager](https://togithub.com/GoogleCloudPlatform/google-cloud-java) | patch | `0.118.4-alpha` -> `0.118.5-alpha` |
---
### Renovate configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-resourcemanager).
---
samples/install-without-bom/pom.xml | 2 +-
samples/snapshot/pom.xml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index dad3f47f..359f50d2 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-resourcemanager
- 0.118.4-alpha
+ 0.118.5-alpha
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 633a90af..a3360e3d 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-resourcemanager
- 0.118.4-alpha
+ 0.118.5-alpha
From 9152e7b43b5b04264abc7ebc19efa46bf7598a63 Mon Sep 17 00:00:00 2001
From: Yoshi Automation Bot
Date: Mon, 14 Dec 2020 12:52:09 -0800
Subject: [PATCH 5/7] chore: regenerate README (#330)
This PR was generated using Autosynth. :rainbow:
Log from Synthtool
```
2020-12-14 19:59:27,827 synthtool [DEBUG] > Executing /root/.cache/synthtool/java-resourcemanager/.github/readme/synth.py.
On branch autosynth-readme
nothing to commit, working tree clean
2020-12-14 19:59:28,685 synthtool [DEBUG] > Wrote metadata to .github/readme/synth.metadata/synth.metadata.
```
Full log will be available here:
https://source.cloud.google.com/results/invocations/ce177fa3-8170-4c5a-b80c-ffee762181b6/targets
- [ ] To automatically regenerate this PR, check this box.
---
.github/readme/synth.metadata/synth.metadata | 4 ++--
README.md | 4 +++-
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 1132102c..d8f6ccf1 100644
--- a/.github/readme/synth.metadata/synth.metadata
+++ b/.github/readme/synth.metadata/synth.metadata
@@ -4,14 +4,14 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-resourcemanager.git",
- "sha": "60e2b7debedf61c31d75e0522aec69413ac785bb"
+ "sha": "7bd94d449554da66b73e8e3565d44584876df4bd"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "f94318521f63085b9ccb43d42af89f153fb39f15"
+ "sha": "996775eca5fd934edac3c2ae34b80ff0395b1717"
}
}
]
diff --git a/README.md b/README.md
index f25a150e..51dec09a 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ If you are using Maven without BOM, add this to your dependencies:
com.google.cloud
google-cloud-resourcemanager
- 0.118.4-alpha
+ 0.118.5-alpha
```
@@ -273,6 +273,8 @@ Java 8 OSX | [![Kokoro CI][kokoro-badge-image-3]][kokoro-badge-link-3]
Java 8 Windows | [![Kokoro CI][kokoro-badge-image-4]][kokoro-badge-link-4]
Java 11 | [![Kokoro CI][kokoro-badge-image-5]][kokoro-badge-link-5]
+Java is a registered trademark of Oracle and/or its affiliates.
+
[product-docs]: https://cloud.google.com/resource-manager
[javadocs]: https://googleapis.dev/java/google-cloud-resourcemanager/latest/
[kokoro-badge-image-1]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-resourcemanager/java7.svg
From 4811b6c7cdc0312d689488b093c11c489f4cb6ad Mon Sep 17 00:00:00 2001
From: WhiteSource Renovate
Date: Mon, 14 Dec 2020 22:36:28 +0100
Subject: [PATCH 6/7] deps: update dependency
com.google.cloud:google-cloud-shared-dependencies to v0.16.1 (#329)
[](https://renovatebot.com)
This PR contains the following updates:
| Package | Update | Change |
|---|---|---|
| [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | patch | `0.16.0` -> `0.16.1` |
---
### Release Notes
googleapis/java-shared-dependencies
### [`v0.16.1`](https://togithub.com/googleapis/java-shared-dependencies/blob/master/CHANGELOG.md#0161-httpswwwgithubcomgoogleapisjava-shared-dependenciescompare0160v0161-2020-12-14)
[Compare Source](https://togithub.com/googleapis/java-shared-dependencies/compare/v0.16.0...v0.16.1)
---
### Renovate configuration
:date: **Schedule**: At any time (no schedule defined).
:vertical_traffic_light: **Automerge**: Disabled by config. Please merge this manually once you are satisfied.
:recycle: **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: **Ignore**: Close this PR and you won't be reminded about this update again.
---
- [ ] If you want to rebase/retry this PR, check this box
---
This PR has been generated by [WhiteSource Renovate](https://renovate.whitesourcesoftware.com). View repository job log [here](https://app.renovatebot.com/dashboard#github/googleapis/java-resourcemanager).
---
pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pom.xml b/pom.xml
index ab0d4f05..a98f4923 100644
--- a/pom.xml
+++ b/pom.xml
@@ -75,7 +75,7 @@
com.google.cloud
google-cloud-shared-dependencies
- 0.16.0
+ 0.16.1
pom
import
From 4ed6586f5af884e8ff9e08fe08e9bc6b1aa41dd4 Mon Sep 17 00:00:00 2001
From: "release-please[bot]"
<55107282+release-please[bot]@users.noreply.github.com>
Date: Mon, 14 Dec 2020 22:24:12 +0000
Subject: [PATCH 7/7] chore: release 0.118.6 (#331)
:robot: I have created a release \*beep\* \*boop\*
---
### [0.118.6](https://www.github.com/googleapis/java-resourcemanager/compare/v0.118.5...v0.118.6) (2020-12-14)
### Dependencies
* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.16.1 ([#329](https://www.github.com/googleapis/java-resourcemanager/issues/329)) ([4811b6c](https://www.github.com/googleapis/java-resourcemanager/commit/4811b6c7cdc0312d689488b093c11c489f4cb6ad))
---
This PR was generated with [Release Please](https://github.com/googleapis/release-please).
---
CHANGELOG.md | 7 +++++++
pom.xml | 4 ++--
versions.txt | 2 +-
3 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e5d013b6..cfa78c2f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
# Changelog
+### [0.118.6](https://www.github.com/googleapis/java-resourcemanager/compare/v0.118.5...v0.118.6) (2020-12-14)
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.16.1 ([#329](https://www.github.com/googleapis/java-resourcemanager/issues/329)) ([4811b6c](https://www.github.com/googleapis/java-resourcemanager/commit/4811b6c7cdc0312d689488b093c11c489f4cb6ad))
+
### [0.118.5](https://www.github.com/googleapis/java-resourcemanager/compare/v0.118.4...v0.118.5) (2020-12-02)
diff --git a/pom.xml b/pom.xml
index a98f4923..84836af9 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-resourcemanager
jar
- 0.118.6-alpha-SNAPSHOT
+ 0.118.6-alpha
Google Cloud Resource Manager
https://github.com/googleapis/java-resourcemanager
@@ -70,7 +70,7 @@
com.google.cloud
google-cloud-resourcemanager
- 0.118.6-alpha-SNAPSHOT
+ 0.118.6-alpha
com.google.cloud
diff --git a/versions.txt b/versions.txt
index 64cc050a..c65c23f8 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,4 +1,4 @@
# Format:
# module:released-version:current-version
-google-cloud-resourcemanager:0.118.5-alpha:0.118.6-alpha-SNAPSHOT
\ No newline at end of file
+google-cloud-resourcemanager:0.118.6-alpha:0.118.6-alpha
\ No newline at end of file