diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 7c8816a7..9b4fd4d8 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -16,8 +16,8 @@ jobs: return; } - // only approve PRs like "chore(master): release " - if ( !context.payload.pull_request.title.startsWith("chore(master): release") ) { + // only approve PRs like "chore: release " + if ( !context.payload.pull_request.title.startsWith("chore: release") ) { return; } diff --git a/.kokoro/release/publish_javadoc.cfg b/.kokoro/release/publish_javadoc.cfg index 46349de9..4ad86926 100644 --- a/.kokoro/release/publish_javadoc.cfg +++ b/.kokoro/release/publish_javadoc.cfg @@ -7,12 +7,6 @@ env_vars: { value: "docs-staging" } -# cloud-rad staging -env_vars: { - key: "STAGING_BUCKET_V2" - value: "docs-staging-v2-staging" -} - env_vars: { key: "TRAMPOLINE_BUILD_FILE" value: "github/java-workflow-executions/.kokoro/release/publish_javadoc.sh" @@ -26,4 +20,4 @@ before_action { keyname: "docuploader_service_account" } } -} \ No newline at end of file +} diff --git a/.kokoro/release/publish_javadoc.sh b/.kokoro/release/publish_javadoc.sh index c1a7d81c..b4831c84 100755 --- a/.kokoro/release/publish_javadoc.sh +++ b/.kokoro/release/publish_javadoc.sh @@ -56,22 +56,3 @@ python3 -m docuploader create-metadata \ python3 -m docuploader upload . \ --credentials ${CREDENTIALS} \ --staging-bucket ${STAGING_BUCKET} - -popd - -# 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 - -# create metadata -python3 -m docuploader create-metadata \ - --name ${NAME} \ - --version ${VERSION} \ - --language java - -# upload docs to staging bucket -python3 -m docuploader upload . \ - --credentials ${CREDENTIALS} \ - --staging-bucket ${STAGING_BUCKET_V2} diff --git a/.kokoro/release/publish_javadoc11.sh b/.kokoro/release/publish_javadoc11.sh index 5b3a8b5b..c99c266e 100755 --- a/.kokoro/release/publish_javadoc11.sh +++ b/.kokoro/release/publish_javadoc11.sh @@ -40,6 +40,9 @@ export VERSION=$(grep ${NAME}: versions.txt | cut -d: -f3) # generate yml 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 + pushd target/docfx-yml # create metadata @@ -52,4 +55,4 @@ python3 -m docuploader create-metadata \ python3 -m docuploader upload . \ --credentials ${CREDENTIALS} \ --staging-bucket ${STAGING_BUCKET_V2} \ - --destination-prefix docfx- + --destination-prefix docfx diff --git a/CHANGELOG.md b/CHANGELOG.md index a1745759..036d8394 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.1.7](https://www.github.com/googleapis/java-workflow-executions/compare/v0.1.6...v0.1.7) (2021-03-11) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-shared-dependencies to v0.20.1 ([#77](https://www.github.com/googleapis/java-workflow-executions/issues/77)) ([d1bf190](https://www.github.com/googleapis/java-workflow-executions/commit/d1bf19039d9e8afead2aa8b1a2ff7dbe43dedb14)) + ### [0.1.6](https://www.github.com/googleapis/java-workflow-executions/compare/v0.1.5...v0.1.6) (2021-02-25) diff --git a/README.md b/README.md index ce731ac9..0dc32b7b 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ If you are using Maven, add this to your pom.xml file: If you are using Gradle, add this to your dependencies ```Groovy -compile 'com.google.cloud:google-cloud-workflow-executions:0.1.6' +compile 'com.google.cloud:google-cloud-workflow-executions:0.1.7' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-workflow-executions" % "0.1.6" +libraryDependencies += "com.google.cloud" % "google-cloud-workflow-executions" % "0.1.7" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-workflow-executions-bom/pom.xml b/google-cloud-workflow-executions-bom/pom.xml index 3b508c8f..0e3e6f28 100644 --- a/google-cloud-workflow-executions-bom/pom.xml +++ b/google-cloud-workflow-executions-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-workflow-executions-bom - 0.1.6 + 0.1.7 pom com.google.cloud @@ -68,17 +68,17 @@ com.google.cloud google-cloud-workflow-executions - 0.1.6 + 0.1.7 com.google.api.grpc proto-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 com.google.api.grpc grpc-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 diff --git a/google-cloud-workflow-executions/pom.xml b/google-cloud-workflow-executions/pom.xml index 99532954..ab6b89fd 100644 --- a/google-cloud-workflow-executions/pom.xml +++ b/google-cloud-workflow-executions/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-workflow-executions - 0.1.6 + 0.1.7 jar Google Cloud Workflow Executions https://github.com/googleapis/java-workflow-executions @@ -11,7 +11,7 @@ com.google.cloud google-cloud-workflow-executions-parent - 0.1.6 + 0.1.7 google-cloud-workflow-executions diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClient.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClient.java index a7d0c877..15e8eb41 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClient.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClient.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsSettings.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsSettings.java index 3129b37a..4ed0a346 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsSettings.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/package-info.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/package-info.java index 91f91030..68681ee6 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/package-info.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/package-info.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStub.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStub.java index 3ded18ca..854303d0 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStub.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStubSettings.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStubSettings.java index 29c90b7f..198337e2 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStubSettings.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/ExecutionsStubSettings.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsCallableFactory.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsCallableFactory.java index b7c4d4c8..5800d85f 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsCallableFactory.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsCallableFactory.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsStub.java b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsStub.java index d529d785..e0104698 100644 --- a/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsStub.java +++ b/google-cloud-workflow-executions/src/main/java/com/google/cloud/workflows/executions/v1beta/stub/GrpcExecutionsStub.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClientTest.java b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClientTest.java index cb0e46a6..cfd69705 100644 --- a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClientTest.java +++ b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/ExecutionsClientTest.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutions.java b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutions.java index ace24706..b75692f5 100644 --- a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutions.java +++ b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutions.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutionsImpl.java b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutionsImpl.java index e2bee4c5..8571efb9 100644 --- a/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutionsImpl.java +++ b/google-cloud-workflow-executions/src/test/java/com/google/cloud/workflows/executions/v1beta/MockExecutionsImpl.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/grpc-google-cloud-workflow-executions-v1beta/pom.xml b/grpc-google-cloud-workflow-executions-v1beta/pom.xml index 3c0d2c97..d8fb3e7a 100644 --- a/grpc-google-cloud-workflow-executions-v1beta/pom.xml +++ b/grpc-google-cloud-workflow-executions-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 grpc-google-cloud-workflow-executions-v1beta GRPC library for google-cloud-workflow-executions com.google.cloud google-cloud-workflow-executions-parent - 0.1.6 + 0.1.7 diff --git a/grpc-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsGrpc.java b/grpc-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsGrpc.java index 5802eaf4..64cef090 100644 --- a/grpc-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsGrpc.java +++ b/grpc-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionsGrpc.java @@ -16,11 +16,6 @@ package com.google.cloud.workflows.executions.v1beta; import static io.grpc.MethodDescriptor.generateFullMethodName; -import static io.grpc.stub.ClientCalls.asyncUnaryCall; -import static io.grpc.stub.ClientCalls.blockingUnaryCall; -import static io.grpc.stub.ClientCalls.futureUnaryCall; -import static io.grpc.stub.ServerCalls.asyncUnaryCall; -import static io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall; /** * @@ -291,7 +286,8 @@ public void listExecutions( io.grpc.stub.StreamObserver< com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse> responseObserver) { - asyncUnimplementedUnaryCall(getListExecutionsMethod(), responseObserver); + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( + getListExecutionsMethod(), responseObserver); } /** @@ -305,7 +301,8 @@ public void createExecution( com.google.cloud.workflows.executions.v1beta.CreateExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnimplementedUnaryCall(getCreateExecutionMethod(), responseObserver); + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( + getCreateExecutionMethod(), responseObserver); } /** @@ -319,7 +316,8 @@ public void getExecution( com.google.cloud.workflows.executions.v1beta.GetExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnimplementedUnaryCall(getGetExecutionMethod(), responseObserver); + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( + getGetExecutionMethod(), responseObserver); } /** @@ -333,7 +331,8 @@ public void cancelExecution( com.google.cloud.workflows.executions.v1beta.CancelExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnimplementedUnaryCall(getCancelExecutionMethod(), responseObserver); + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall( + getCancelExecutionMethod(), responseObserver); } @java.lang.Override @@ -341,28 +340,28 @@ public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( getListExecutionsMethod(), - asyncUnaryCall( + io.grpc.stub.ServerCalls.asyncUnaryCall( new MethodHandlers< com.google.cloud.workflows.executions.v1beta.ListExecutionsRequest, com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse>( this, METHODID_LIST_EXECUTIONS))) .addMethod( getCreateExecutionMethod(), - asyncUnaryCall( + io.grpc.stub.ServerCalls.asyncUnaryCall( new MethodHandlers< com.google.cloud.workflows.executions.v1beta.CreateExecutionRequest, com.google.cloud.workflows.executions.v1beta.Execution>( this, METHODID_CREATE_EXECUTION))) .addMethod( getGetExecutionMethod(), - asyncUnaryCall( + io.grpc.stub.ServerCalls.asyncUnaryCall( new MethodHandlers< com.google.cloud.workflows.executions.v1beta.GetExecutionRequest, com.google.cloud.workflows.executions.v1beta.Execution>( this, METHODID_GET_EXECUTION))) .addMethod( getCancelExecutionMethod(), - asyncUnaryCall( + io.grpc.stub.ServerCalls.asyncUnaryCall( new MethodHandlers< com.google.cloud.workflows.executions.v1beta.CancelExecutionRequest, com.google.cloud.workflows.executions.v1beta.Execution>( @@ -404,7 +403,7 @@ public void listExecutions( io.grpc.stub.StreamObserver< com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse> responseObserver) { - asyncUnaryCall( + io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getListExecutionsMethod(), getCallOptions()), request, responseObserver); @@ -421,7 +420,7 @@ public void createExecution( com.google.cloud.workflows.executions.v1beta.CreateExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnaryCall( + io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getCreateExecutionMethod(), getCallOptions()), request, responseObserver); @@ -438,7 +437,7 @@ public void getExecution( com.google.cloud.workflows.executions.v1beta.GetExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnaryCall( + io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getGetExecutionMethod(), getCallOptions()), request, responseObserver); @@ -455,7 +454,7 @@ public void cancelExecution( com.google.cloud.workflows.executions.v1beta.CancelExecutionRequest request, io.grpc.stub.StreamObserver responseObserver) { - asyncUnaryCall( + io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getCancelExecutionMethod(), getCallOptions()), request, responseObserver); @@ -494,7 +493,8 @@ protected ExecutionsBlockingStub build( */ public com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse listExecutions( com.google.cloud.workflows.executions.v1beta.ListExecutionsRequest request) { - return blockingUnaryCall(getChannel(), getListExecutionsMethod(), getCallOptions(), request); + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getListExecutionsMethod(), getCallOptions(), request); } /** @@ -506,7 +506,8 @@ public com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse listE */ public com.google.cloud.workflows.executions.v1beta.Execution createExecution( com.google.cloud.workflows.executions.v1beta.CreateExecutionRequest request) { - return blockingUnaryCall(getChannel(), getCreateExecutionMethod(), getCallOptions(), request); + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCreateExecutionMethod(), getCallOptions(), request); } /** @@ -518,7 +519,8 @@ public com.google.cloud.workflows.executions.v1beta.Execution createExecution( */ public com.google.cloud.workflows.executions.v1beta.Execution getExecution( com.google.cloud.workflows.executions.v1beta.GetExecutionRequest request) { - return blockingUnaryCall(getChannel(), getGetExecutionMethod(), getCallOptions(), request); + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGetExecutionMethod(), getCallOptions(), request); } /** @@ -530,7 +532,8 @@ public com.google.cloud.workflows.executions.v1beta.Execution getExecution( */ public com.google.cloud.workflows.executions.v1beta.Execution cancelExecution( com.google.cloud.workflows.executions.v1beta.CancelExecutionRequest request) { - return blockingUnaryCall(getChannel(), getCancelExecutionMethod(), getCallOptions(), request); + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getCancelExecutionMethod(), getCallOptions(), request); } } @@ -566,7 +569,7 @@ protected ExecutionsFutureStub build(io.grpc.Channel channel, io.grpc.CallOption public com.google.common.util.concurrent.ListenableFuture< com.google.cloud.workflows.executions.v1beta.ListExecutionsResponse> listExecutions(com.google.cloud.workflows.executions.v1beta.ListExecutionsRequest request) { - return futureUnaryCall( + return io.grpc.stub.ClientCalls.futureUnaryCall( getChannel().newCall(getListExecutionsMethod(), getCallOptions()), request); } @@ -581,7 +584,7 @@ protected ExecutionsFutureStub build(io.grpc.Channel channel, io.grpc.CallOption com.google.cloud.workflows.executions.v1beta.Execution> createExecution( com.google.cloud.workflows.executions.v1beta.CreateExecutionRequest request) { - return futureUnaryCall( + return io.grpc.stub.ClientCalls.futureUnaryCall( getChannel().newCall(getCreateExecutionMethod(), getCallOptions()), request); } @@ -595,7 +598,7 @@ protected ExecutionsFutureStub build(io.grpc.Channel channel, io.grpc.CallOption public com.google.common.util.concurrent.ListenableFuture< com.google.cloud.workflows.executions.v1beta.Execution> getExecution(com.google.cloud.workflows.executions.v1beta.GetExecutionRequest request) { - return futureUnaryCall( + return io.grpc.stub.ClientCalls.futureUnaryCall( getChannel().newCall(getGetExecutionMethod(), getCallOptions()), request); } @@ -610,7 +613,7 @@ protected ExecutionsFutureStub build(io.grpc.Channel channel, io.grpc.CallOption com.google.cloud.workflows.executions.v1beta.Execution> cancelExecution( com.google.cloud.workflows.executions.v1beta.CancelExecutionRequest request) { - return futureUnaryCall( + return io.grpc.stub.ClientCalls.futureUnaryCall( getChannel().newCall(getCancelExecutionMethod(), getCallOptions()), request); } } diff --git a/pom.xml b/pom.xml index e633db06..48771dcd 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-workflow-executions-parent pom - 0.1.6 + 0.1.7 Google Cloud Workflow Executions Parent https://github.com/googleapis/java- @@ -70,23 +70,23 @@ com.google.cloud google-cloud-workflow-executions - 0.1.6 + 0.1.7 com.google.api.grpc proto-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 com.google.api.grpc grpc-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 com.google.cloud google-cloud-shared-dependencies - 0.20.0 + 0.20.1 pom import diff --git a/proto-google-cloud-workflow-executions-v1beta/pom.xml b/proto-google-cloud-workflow-executions-v1beta/pom.xml index e8ec460c..72949272 100644 --- a/proto-google-cloud-workflow-executions-v1beta/pom.xml +++ b/proto-google-cloud-workflow-executions-v1beta/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-workflow-executions-v1beta - 0.1.6 + 0.1.7 proto-google-cloud-workflow-executions-v1beta Proto library for google-cloud-workflow-executions com.google.cloud google-cloud-workflow-executions-parent - 0.1.6 + 0.1.7 diff --git a/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionName.java b/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionName.java index 1318e74a..667452f9 100644 --- a/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionName.java +++ b/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/ExecutionName.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/WorkflowName.java b/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/WorkflowName.java index 4e881689..784779ca 100644 --- a/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/WorkflowName.java +++ b/proto-google-cloud-workflow-executions-v1beta/src/main/java/com/google/cloud/workflows/executions/v1beta/WorkflowName.java @@ -1,5 +1,5 @@ /* - * Copyright 2020 Google LLC + * Copyright 2021 Google LLC * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/samples/install-without-bom/pom.xml b/samples/install-without-bom/pom.xml index c46eabee..38f4b3a9 100644 --- a/samples/install-without-bom/pom.xml +++ b/samples/install-without-bom/pom.xml @@ -29,7 +29,7 @@ com.google.cloud google-cloud-workflow-executions - 0.1.5 + 0.1.6 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 866cb510..86fb8685 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-workflow-executions - 0.1.6 + 0.1.7 diff --git a/samples/snippets/pom.xml b/samples/snippets/pom.xml index e91919d2..42901d7d 100644 --- a/samples/snippets/pom.xml +++ b/samples/snippets/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-workflow-executions - 0.1.5 + 0.1.6 diff --git a/synth.metadata b/synth.metadata index 838df10d..8173c160 100644 --- a/synth.metadata +++ b/synth.metadata @@ -4,22 +4,22 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/java-workflow-executions.git", - "sha": "2e0ea20f17dc5cff6296b12cbc65ba07101b0cf7" + "sha": "d1bf19039d9e8afead2aa8b1a2ff7dbe43dedb14" } }, { "git": { "name": "googleapis", "remote": "https://github.com/googleapis/googleapis.git", - "sha": "af8f71dae961ee036a0ac52a1965270149a6b2c9", - "internalRef": "358516065" + "sha": "0e915217fb5261c1e57bfaf0e16ee5c7feaaba89", + "internalRef": "361377784" } }, { "git": { "name": "synthtool", "remote": "https://github.com/googleapis/synthtool.git", - "sha": "6946fd71ae9215b0e7ae188f5057df765ee6d7d2" + "sha": "0b064d767537e0675fc053e53fca473c5c701fb8" } } ], diff --git a/versions.txt b/versions.txt index 672d6f46..3400c036 100644 --- a/versions.txt +++ b/versions.txt @@ -1,6 +1,6 @@ # Format: # module:released-version:current-version -google-cloud-workflow-executions:0.1.6:0.1.6 -proto-google-cloud-workflow-executions-v1beta:0.1.6:0.1.6 -grpc-google-cloud-workflow-executions-v1beta:0.1.6:0.1.6 \ No newline at end of file +google-cloud-workflow-executions:0.1.7:0.1.7 +proto-google-cloud-workflow-executions-v1beta:0.1.7:0.1.7 +grpc-google-cloud-workflow-executions-v1beta:0.1.7:0.1.7 \ No newline at end of file