diff --git a/.github/generated-files-bot.yml b/.github/generated-files-bot.yml
index 47c2ba13..c644a24e 100644
--- a/.github/generated-files-bot.yml
+++ b/.github/generated-files-bot.yml
@@ -9,3 +9,4 @@ ignoreAuthors:
- 'renovate-bot'
- 'yoshi-automation'
- 'release-please[bot]'
+- 'gcf-owl-bot[bot]'
diff --git a/.github/readme/synth.metadata/synth.metadata b/.github/readme/synth.metadata/synth.metadata
index 03b7e9ad..1c039ff2 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": "413eb1cf9731bc467d9299e44e2e447a66c4317d"
+ "sha": "e37c76aecb05508f47e2dcbda930d272f8ff37c7"
}
},
{
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "06a8cd0ff7e81b05e6c503eab510ec622384caa7"
+ "sha": "a2de127f90799cd5bace653b1dcc5dd2ca8b19c9"
}
}
]
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index def8b3a2..0195b32f 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -19,10 +19,6 @@ jobs:
- run: .kokoro/build.sh
env:
JOB_TYPE: test
- - name: coverage
- uses: codecov/codecov-action@v1
- with:
- name: actions ${{matrix.java}}
windows:
runs-on: windows-latest
steps:
@@ -80,4 +76,4 @@ jobs:
- run: java -version
- run: .kokoro/build.sh
env:
- JOB_TYPE: clirr
\ No newline at end of file
+ JOB_TYPE: clirr
diff --git a/.kokoro/build.sh b/.kokoro/build.sh
index 2f0cfa76..07c61d29 100755
--- a/.kokoro/build.sh
+++ b/.kokoro/build.sh
@@ -23,8 +23,8 @@ cd ${scriptDir}/..
# include common functions
source ${scriptDir}/common.sh
-# Print out Java version
-java -version
+# Print out Maven & Java version
+mvn -version
echo ${JOB_TYPE}
# attempt to install 3 times with exponential backoff (starting with 10 seconds)
diff --git a/.kokoro/release/publish_javadoc11.sh b/.kokoro/release/publish_javadoc11.sh
index 007a145c..4c2b5933 100755
--- a/.kokoro/release/publish_javadoc11.sh
+++ b/.kokoro/release/publish_javadoc11.sh
@@ -42,6 +42,8 @@ mvn clean site -B -q -P docFX
# copy README to docfx-yml dir and rename index.md
cp README.md target/docfx-yml/index.md
+# copy CHANGELOG to docfx-yml dir and rename history.md
+cp CHANGELOG.md target/docfx-yml/history.md
pushd target/docfx-yml
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1aed0a9b..0c2781b2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [1.2.0](https://www.github.com/googleapis/java-functions/compare/v1.1.3...v1.2.0) (2021-05-25)
+
+
+### Features
+
+* add `gcf-owl-bot[bot]` to `ignoreAuthors` ([#210](https://www.github.com/googleapis/java-functions/issues/210)) ([bf03eac](https://www.github.com/googleapis/java-functions/commit/bf03eac76843cf72b2b9744a26154cbda053d260))
+
+
+### Dependencies
+
+* update dependency com.google.cloud:google-cloud-shared-dependencies to v1.2.0 ([#209](https://www.github.com/googleapis/java-functions/issues/209)) ([e198717](https://www.github.com/googleapis/java-functions/commit/e19871734cc57e31faf9bdd76d7151f9c752d4e2))
+
### [1.1.3](https://www.github.com/googleapis/java-functions/compare/v1.1.2...v1.1.3) (2021-05-11)
diff --git a/README.md b/README.md
index 4e55cfca..ba377f48 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.2
+ 1.1.3
```
If you are using Gradle without BOM, add this to your dependencies
```Groovy
-compile 'com.google.cloud:google-cloud-functions:1.1.2'
+compile 'com.google.cloud:google-cloud-functions:1.1.3'
```
If you are using SBT, add this to your dependencies
```Scala
-libraryDependencies += "com.google.cloud" % "google-cloud-functions" % "1.1.2"
+libraryDependencies += "com.google.cloud" % "google-cloud-functions" % "1.1.3"
```
## Authentication
diff --git a/google-cloud-functions-bom/pom.xml b/google-cloud-functions-bom/pom.xml
index f3d109a5..0f6c2ff1 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.3
+ 1.2.0
pom
com.google.cloud
google-cloud-shared-config
- 0.11.2
+ 0.12.0
Google Cloud Functions BOM
@@ -68,17 +68,17 @@
com.google.cloud
google-cloud-functions
- 1.1.3
+ 1.2.0
com.google.api.grpc
proto-google-cloud-functions-v1
- 1.1.3
+ 1.2.0
com.google.api.grpc
grpc-google-cloud-functions-v1
- 1.1.3
+ 1.2.0
diff --git a/google-cloud-functions/pom.xml b/google-cloud-functions/pom.xml
index 61704245..afbf51fb 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.3
+ 1.2.0
jar
Google Cloud Functions
https://github.com/googleapis/java-functions
@@ -11,7 +11,7 @@
com.google.cloud
google-cloud-functions-parent
- 1.1.3
+ 1.2.0
google-cloud-functions
diff --git a/grpc-google-cloud-functions-v1/pom.xml b/grpc-google-cloud-functions-v1/pom.xml
index 3a2f2ce8..6e0cd15e 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.3
+ 1.2.0
grpc-google-cloud-functions-v1
GRPC library for grpc-google-cloud-functions-v1
com.google.cloud
google-cloud-functions-parent
- 1.1.3
+ 1.2.0
diff --git a/pom.xml b/pom.xml
index 2f618227..68043aa2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
com.google.cloud
google-cloud-functions-parent
pom
- 1.1.3
+ 1.2.0
Google Cloud Functions Parent
https://github.com/googleapis/java-functions
@@ -14,7 +14,7 @@
com.google.cloud
google-cloud-shared-config
- 0.11.2
+ 0.12.0
@@ -70,23 +70,23 @@
com.google.cloud
google-cloud-functions
- 1.1.3
+ 1.2.0
com.google.api.grpc
proto-google-cloud-functions-v1
- 1.1.3
+ 1.2.0
com.google.api.grpc
grpc-google-cloud-functions-v1
- 1.1.3
+ 1.2.0
com.google.cloud
google-cloud-shared-dependencies
- 1.1.0
+ 1.2.0
pom
import
@@ -156,7 +156,7 @@
org.apache.maven.plugins
maven-javadoc-plugin
- 3.2.0
+ 3.3.0
html
diff --git a/proto-google-cloud-functions-v1/pom.xml b/proto-google-cloud-functions-v1/pom.xml
index 72fed449..f1274b50 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.3
+ 1.2.0
proto-google-cloud-functions-v1
PROTO library for proto-google-cloud-functions-v1
com.google.cloud
google-cloud-functions-parent
- 1.1.3
+ 1.2.0
diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml
index 24691131..6c4b54a3 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.2
+ 1.1.3
diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml
index 1d46c774..7f641a95 100644
--- a/samples/snapshot/pom.xml
+++ b/samples/snapshot/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-functions
- 1.1.2
+ 1.1.3
diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml
index aec3b999..61fadbf3 100644
--- a/samples/snippets/pom.xml
+++ b/samples/snippets/pom.xml
@@ -28,7 +28,7 @@
com.google.cloud
google-cloud-functions
- 1.1.2
+ 1.1.3
diff --git a/synth.metadata b/synth.metadata
index dc61d80c..430ff7bb 100644
--- a/synth.metadata
+++ b/synth.metadata
@@ -4,7 +4,7 @@
"git": {
"name": ".",
"remote": "https://github.com/googleapis/java-functions.git",
- "sha": "0285749cf6e2020fdef14758773fa2f4d70c930d"
+ "sha": "9a6df38c1d674209d6cb059e1231183099f8f991"
}
},
{
@@ -19,7 +19,7 @@
"git": {
"name": "synthtool",
"remote": "https://github.com/googleapis/synthtool.git",
- "sha": "046994f491c02806aea60118e214a9edd67f5ab7"
+ "sha": "8eae0234a16b26c2ff616d305dbd9786c8b10a47"
}
}
],
diff --git a/versions.txt b/versions.txt
index a7987f24..830c7e98 100644
--- a/versions.txt
+++ b/versions.txt
@@ -1,6 +1,6 @@
# Format:
# module:released-version:current-version
-google-cloud-functions:1.1.3:1.1.3
-proto-google-cloud-functions-v1:1.1.3:1.1.3
-grpc-google-cloud-functions-v1:1.1.3:1.1.3
+google-cloud-functions:1.2.0:1.2.0
+proto-google-cloud-functions-v1:1.2.0:1.2.0
+grpc-google-cloud-functions-v1:1.2.0:1.2.0