diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 93d544ef..e0c7da31 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-functions.git",
- "sha": "7608e137f6ba7fbf13a77c7a91ae91ae2828fa1f"
+ "sha": "6a59cccbf447770ee1c7605e71ef7236d1af8ac1"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "78437c732a60c64895778697b078497b0988346c"
+ "sha": "0a071b3460344886297a304253bf924aa68ddb7e"
}
}
]
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index 7422aa62..2f0cfa76 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -37,7 +37,7 @@ retry_with_backoff 3 10 \
-Dgcloud.download.skip=true \
-T 1C
-# if GOOGLE_APPLICATION_CREDIENTIALS is specified as a relative path prepend Kokoro root directory onto it
+# if GOOGLE_APPLICATION_CREDENTIALS is specified as a relative path, prepend Kokoro root directory onto it
if [[ ! -z "${GOOGLE_APPLICATION_CREDENTIALS}" && "${GOOGLE_APPLICATION_CREDENTIALS}" != /* ]]; then
export GOOGLE_APPLICATION_CREDENTIALS=$(realpath ${KOKORO_GFILE_DIR}/${GOOGLE_APPLICATION_CREDENTIALS})
fi
diff --git a/.kokoro/dependencies.sh b/.kokoro/dependencies.sh
index 0fb8c843..59d2aafc 100755
--- a/.kokoro/dependencies.sh
+++ b/.kokoro/dependencies.sh
@@ -33,6 +33,7 @@ export MAVEN_OPTS="-Xmx1024m -XX:MaxPermSize=128m"
retry_with_backoff 3 10 \
mvn install -B -V -ntp \
-DskipTests=true \
+ -Dmaven.javadoc.skip=true \
-Dclirr.skip=true
mvn -B dependency:analyze -DfailOnWarning=true
diff --git a/.kokoro/release/snapshot.sh b/.kokoro/release/snapshot.sh
index 098168a7..1f55b770 100755
--- a/.kokoro/release/snapshot.sh
+++ b/.kokoro/release/snapshot.sh
@@ -25,7 +25,7 @@ grep SNAPSHOT versions.txt
setup_environment_secrets
create_settings_xml_file "settings.xml"
-mvn clean install deploy -B \
+mvn clean deploy -B \
--settings ${MAVEN_SETTINGS_FILE} \
-DperformRelease=true \
-Dgpg.executable=gpg \
diff --git a/.kokoro/release/stage.sh b/.kokoro/release/stage.sh
index 16126d2e..8a103384 100755
--- a/.kokoro/release/stage.sh
+++ b/.kokoro/release/stage.sh
@@ -29,7 +29,7 @@ create_settings_xml_file "settings.xml"
# attempt to stage 3 times with exponential backoff (starting with 10 seconds)
retry_with_backoff 3 10 \
- mvn clean install deploy -B \
+ mvn clean deploy -B \
--settings ${MAVEN_SETTINGS_FILE} \
-DskipTests=true \
-DperformRelease=true \
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 70cbcac0..38157afb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
# Changelog
+### [1.1.2](https://www.github.com/googleapis/java-functions/compare/v1.1.1...v1.1.2) (2021-04-23)
+
+
+### Bug Fixes
+
+* release scripts from issuing overlapping phases ([#186](https://www.github.com/googleapis/java-functions/issues/186)) ([278a0e3](https://www.github.com/googleapis/java-functions/commit/278a0e33a8477d4dffd9fe22c5b0a747827aed42))
+* typo ([#183](https://www.github.com/googleapis/java-functions/issues/183)) ([5dd3420](https://www.github.com/googleapis/java-functions/commit/5dd3420cdf4c8a93c55aca209958876513fc7755))
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.21.1 ([#187](https://www.github.com/googleapis/java-functions/issues/187)) ([0ff437b](https://www.github.com/googleapis/java-functions/commit/0ff437b7f1d0abd89d8060ceb9e44b90b3d013df))
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v1 ([#190](https://www.github.com/googleapis/java-functions/issues/190)) ([5adca1b](https://www.github.com/googleapis/java-functions/commit/5adca1b7756febc029380c6dced1ae18021c4333))
+
### [1.1.1](https://www.github.com/googleapis/java-functions/compare/v1.1.0...v1.1.1) (2021-04-09)
diff --git a/README.md b/README.md
index a750c983..a4c713f9 100644
--- a/README.md
+++ b/README.md
@@ -17,19 +17,19 @@ If you are using Maven, add this to your pom.xml file:
com.google.cloud
google-cloud-functions
- 1.1.0
+ 1.1.1
```
If you are using Gradle without BOM, add this to your dependencies
```Groovy
-compile 'com.google.cloud:google-cloud-functions:1.1.0'
+compile 'com.google.cloud:google-cloud-functions:1.1.1'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-functions" % "1.1.0"
+libraryDependencies += "com.google.cloud" % "google-cloud-functions" % "1.1.1"
```
## Authentication
diff --git a/google-cloud-functions-bom/pom.xml b/google-cloud-functions-bom/pom.xml
index 5bda5c21..38b47065 100644
--- a/google-cloud-functions-bom/pom.xml
+++ b/google-cloud-functions-bom/pom.xml
@@ -3,12 +3,12 @@
4.0.0
com.google.cloud
google-cloud-functions-bom
- 1.1.1
+ 1.1.2
pom
com.google.cloud
google-cloud-shared-config
- 0.11.0
+ 0.11.2
Google Cloud Functions BOM
@@ -68,17 +68,17 @@
com.google.cloud
google-cloud-functions
- 1.1.1
+ 1.1.2
com.google.api.grpc
proto-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
com.google.api.grpc
grpc-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
diff --git a/google-cloud-functions/pom.xml b/google-cloud-functions/pom.xml
index 48a672e9..bd931b14 100644
--- a/google-cloud-functions/pom.xml
+++ b/google-cloud-functions/pom.xml
@@ -3,7 +3,7 @@
4.0.0
com.google.cloud
google-cloud-functions
- 1.1.1
+ 1.1.2
jar
Google Cloud Functions
https://github.com/googleapis/java-functions
@@ -11,7 +11,7 @@
com.google.cloud
google-cloud-functions-parent
- 1.1.1
+ 1.1.2
google-cloud-functions
diff --git a/grpc-google-cloud-functions-v1/pom.xml b/grpc-google-cloud-functions-v1/pom.xml
index e22cd0ef..8a757fb8 100644
--- a/grpc-google-cloud-functions-v1/pom.xml
+++ b/grpc-google-cloud-functions-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
grpc-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
grpc-google-cloud-functions-v1
GRPC library for grpc-google-cloud-functions-v1
com.google.cloud
google-cloud-functions-parent
- 1.1.1
+ 1.1.2
diff --git a/pom.xml b/pom.xml
index 89fba7a0..c09fb28b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-functions-parent
pom
- 1.1.1
+ 1.1.2
Google Cloud Functions Parent
https://github.com/googleapis/java-functions
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.0
+ 0.11.2
@@ -70,23 +70,23 @@
com.google.cloud
google-cloud-functions
- 1.1.1
+ 1.1.2
com.google.api.grpc
proto-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
com.google.api.grpc
grpc-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
com.google.cloud
google-cloud-shared-dependencies
- 0.21.0
+ 1.0.0
pom
import
diff --git a/proto-google-cloud-functions-v1/pom.xml b/proto-google-cloud-functions-v1/pom.xml
index 56b61e54..7512eeaa 100644
--- a/proto-google-cloud-functions-v1/pom.xml
+++ b/proto-google-cloud-functions-v1/pom.xml
@@ -4,13 +4,13 @@
4.0.0
com.google.api.grpc
proto-google-cloud-functions-v1
- 1.1.1
+ 1.1.2
proto-google-cloud-functions-v1
PROTO library for proto-google-cloud-functions-v1
com.google.cloud
google-cloud-functions-parent
- 1.1.1
+ 1.1.2
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 0be8c1c8..6c7cd550 100644
--- a/samples/install-without-bom/pom.xml
+++ b/samples/install-without-bom/pom.xml
@@ -29,7 +29,7 @@
com.google.cloud
google-cloud-functions
- 1.1.0
+ 1.1.1
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 193849ff..0015be57 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-functions
- 1.1.0
+ 1.1.1
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index 451b5a3d..9bab78e1 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-functions
- 1.1.0
+ 1.1.1
diff --git a/synth.metadata b/synth.metadata
index a4596497..cb66c085 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-functions.git",
- "sha": "1357e53d05acc3bac671ecee92a7bddd801f6e19"
+ "sha": "409a2aa8836edb8da072c3d3e0b00389d0a01a56"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "572ef8f70edd9041f5bcfa71511aed6aecfc2098"
+ "sha": "8285c2b4cdbc3771d031ad91e1c4ec9e55fff45d"
}
}
],
@@ -45,6 +45,7 @@
".github/readme/synth.py",
".github/release-please.yml",
".github/snippet-bot.yml",
+ ".github/sync-repo-settings.yaml",
".github/trusted-contribution.yml",
".github/workflows/approve-readme.yaml",
".github/workflows/auto-release.yaml",
diff --git a/versions.txt b/versions.txt
index 8f9c1505..3435ec8b 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,6 +1,6 @@
# Format:
# module:released-version:current-version
-google-cloud-functions:1.1.1:1.1.1
-proto-google-cloud-functions-v1:1.1.1:1.1.1
-grpc-google-cloud-functions-v1:1.1.1:1.1.1
+google-cloud-functions:1.1.2:1.1.2
+proto-google-cloud-functions-v1:1.1.2:1.1.2
+grpc-google-cloud-functions-v1:1.1.2:1.1.2