From 942f0a47c6f6df072c7627750f0b524f3bb89603 Mon Sep 17 00:00:00 2001 From: Stephanie Wang Date: Tue, 1 Sep 2020 10:41:17 -0400 Subject: [PATCH 1/5] chore: fix autorelease script (#122) --- .github/workflows/auto-release.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 7c2cdc02..53579a2e 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -28,6 +28,7 @@ jobs: context.payload.pull_request.body.includes("BREAKING CHANGES") || context.payload.pull_request.body.includes("Features") ) { + console.log( "Not autoreleasing (not a dependency-update-only release). " ); return; } @@ -37,11 +38,18 @@ jobs: repo: context.repo.repo, state: 'open' }); + + if (result === null || result === 'undefined' || result.length === 0) { + console.log( "No open pull requests in this repo" ); + return; + } + const pulls = await github.paginate(result); // return if there are open depedency update PRs for (const pull of pulls) { - if (pull.title.startWith("deps: update dependency ")) { + if (pull.title.startsWith("deps: update dependency ")) { + console.log( "No open dependency update pull requests in this repo" ); return; } } From 5f62d448facf9d6ea4a9986c721a3e7fcdb3c4a6 Mon Sep 17 00:00:00 2001 From: Stephanie Wang Date: Tue, 1 Sep 2020 12:49:33 -0400 Subject: [PATCH 2/5] chore: update auto-release script to handle undefined (#124) --- .github/workflows/auto-release.yaml | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index 53579a2e..d0d532c8 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -28,7 +28,6 @@ jobs: context.payload.pull_request.body.includes("BREAKING CHANGES") || context.payload.pull_request.body.includes("Features") ) { - console.log( "Not autoreleasing (not a dependency-update-only release). " ); return; } @@ -39,18 +38,14 @@ jobs: state: 'open' }); - if (result === null || result === 'undefined' || result.length === 0) { - console.log( "No open pull requests in this repo" ); - return; - } - const pulls = await github.paginate(result); // return if there are open depedency update PRs - for (const pull of pulls) { - if (pull.title.startsWith("deps: update dependency ")) { - console.log( "No open dependency update pull requests in this repo" ); - return; + if ( pulls !== 'undefined' ) { + for (const pull of pulls) { + if (pull.title.startsWith("deps: update dependency ")) { + return; + } } } From b2fce6bd3d7a82fb64f55ffc166f3eab50f1e484 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:06:03 +0000 Subject: [PATCH 3/5] chore: release 0.3.4-SNAPSHOT (#126) :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). --- .github/workflows/auto-release.yaml | 27 ++++++++++--------- google-cloud-bigqueryconnection-bom/pom.xml | 12 ++++----- google-cloud-bigqueryconnection/pom.xml | 4 +-- .../pom.xml | 4 +-- .../pom.xml | 4 +-- pom.xml | 12 ++++----- .../pom.xml | 4 +-- .../pom.xml | 4 +-- samples/snapshot/pom.xml | 2 +- versions.txt | 10 +++---- 10 files changed, 42 insertions(+), 41 deletions(-) diff --git a/.github/workflows/auto-release.yaml b/.github/workflows/auto-release.yaml index d0d532c8..fd5d674c 100644 --- a/.github/workflows/auto-release.yaml +++ b/.github/workflows/auto-release.yaml @@ -8,42 +8,43 @@ jobs: - uses: actions/github-script@v3.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} + debug: true script: | // only approve PRs from release-please[bot] - if (context.payload.sender.login != "release-please[bot]") { + if (context.payload.pull_request.user.login !== "release-please[bot]") { return; } // only approve PRs like "chore: release " - if (!context.payload.pull_request.title.startsWith("chore: release")) { + if ( !context.payload.pull_request.title.startsWith("chore: release") ) { return; } // trigger auto-release when - // 1) there are dependency updates only - // 2) there are no open dependency update PRs in this repo (to avoid multiple releases) + // 1) it is a SNAPSHOT release (auto-generated post regular release) + // 2) there are dependency updates only + // 3) there are no open dependency update PRs in this repo (to avoid multiple releases) if ( context.payload.pull_request.body.includes("Fix") || context.payload.pull_request.body.includes("Build") || context.payload.pull_request.body.includes("BREAKING CHANGES") || context.payload.pull_request.body.includes("Features") ) { + console.log( "Not auto-releasing since it is not a dependency-update-only release." ); return; } - // list all open pull requests - const result = github.pulls.list({ + const promise = github.pulls.list.endpoint({ owner: context.repo.owner, repo: context.repo.repo, state: 'open' }); + const open_pulls = await github.paginate(promise) - const pulls = await github.paginate(result); - - // return if there are open depedency update PRs - if ( pulls !== 'undefined' ) { - for (const pull of pulls) { - if (pull.title.startsWith("deps: update dependency ")) { + if ( open_pulls.length > 1 && !context.payload.pull_request.title.includes("SNAPSHOT") ) { + for ( const pull of open_pulls ) { + if ( pull.title.startsWith("deps: update dependency") ) { + console.log( "Not auto-releasing yet since there are dependency update PRs open in this repo." ); return; } } @@ -63,5 +64,5 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, issue_number: context.payload.pull_request.number, - labels: ["kokoro:force-run", "automerge"] + labels: ['kokoro:force-run', 'automerge'] }); \ No newline at end of file diff --git a/google-cloud-bigqueryconnection-bom/pom.xml b/google-cloud-bigqueryconnection-bom/pom.xml index a8b11329..6727d11a 100644 --- a/google-cloud-bigqueryconnection-bom/pom.xml +++ b/google-cloud-bigqueryconnection-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection-bom - 0.3.3 + 0.3.4-SNAPSHOT pom com.google.cloud @@ -64,27 +64,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/google-cloud-bigqueryconnection/pom.xml b/google-cloud-bigqueryconnection/pom.xml index 885c0030..1320de59 100644 --- a/google-cloud-bigqueryconnection/pom.xml +++ b/google-cloud-bigqueryconnection/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection - 0.3.3 + 0.3.4-SNAPSHOT jar Google Cloud BigQuery Connections https://github.com/googleapis/java-bigqueryconnection @@ -11,7 +11,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.3 + 0.3.4-SNAPSHOT google-cloud-bigqueryconnection diff --git a/grpc-google-cloud-bigqueryconnection-v1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1/pom.xml index db2d2cc2..355968f6 100644 --- a/grpc-google-cloud-bigqueryconnection-v1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT grpc-google-cloud-bigqueryconnection-v1 GRPC library for grpc-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml index 3616dcd2..d8968334 100644 --- a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT grpc-google-cloud-bigqueryconnection-v1beta1 GRPC library for grpc-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/pom.xml b/pom.xml index bea4e95a..974e1f87 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent pom - 0.3.3 + 0.3.4-SNAPSHOT Google Cloud BigQuery Connections Parent https://github.com/googleapis/java-bigqueryconnection @@ -70,27 +70,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/proto-google-cloud-bigqueryconnection-v1/pom.xml b/proto-google-cloud-bigqueryconnection-v1/pom.xml index 6ba79b01..96964660 100644 --- a/proto-google-cloud-bigqueryconnection-v1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.3 + 0.3.4-SNAPSHOT proto-google-cloud-bigqueryconnection-v1 PROTO library for proto-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml index f20187ce..ac26c34c 100644 --- a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.3 + 0.3.4-SNAPSHOT proto-google-cloud-bigqueryconnection-v1beta1 PROTO library for proto-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 7caa8031..7347cc96 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.3 + 0.3.4-SNAPSHOT diff --git a/versions.txt b/versions.txt index 1961d852..854cb686 100644 --- a/versions.txt +++ b/versions.txt @@ -1,8 +1,8 @@ # Format: # module:released-version:current-version -google-cloud-bigqueryconnection:0.3.3:0.3.3 -proto-google-cloud-bigqueryconnection-v1:0.3.3:0.3.3 -grpc-google-cloud-bigqueryconnection-v1:0.3.3:0.3.3 -proto-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.3 -grpc-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.3 \ No newline at end of file +google-cloud-bigqueryconnection:0.3.3:0.3.4-SNAPSHOT +proto-google-cloud-bigqueryconnection-v1:0.3.3:0.3.4-SNAPSHOT +grpc-google-cloud-bigqueryconnection-v1:0.3.3:0.3.4-SNAPSHOT +proto-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.4-SNAPSHOT +grpc-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.4-SNAPSHOT \ No newline at end of file From 752a655a3e2840fd0217797465137f2611c08303 Mon Sep 17 00:00:00 2001 From: Stephanie Wang Date: Tue, 1 Sep 2020 16:08:04 -0400 Subject: [PATCH 4/5] =?UTF-8?q?deps:=20update=20dependency=20com.google.cl?= =?UTF-8?q?oud:google-cloud-shared-dependen=E2=80=A6=20(#127)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [com.google.cloud:google-cloud-shared-dependencies](https://togithub.com/googleapis/java-shared-dependencies) | minor | `0.8.6` -> `0.9.0` | --- --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 974e1f87..ef05b6f3 100644 --- a/pom.xml +++ b/pom.xml @@ -96,7 +96,7 @@ com.google.cloud google-cloud-shared-dependencies - 0.8.6 + 0.9.0 pom import From 924de73ac0223bf0fe14debcd42074bad513fc17 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2020 20:22:04 +0000 Subject: [PATCH 5/5] chore: release 0.3.4 (#130) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit :robot: I have created a release \*beep\* \*boop\* --- ### [0.3.4](https://www.github.com/googleapis/java-bigqueryconnection/compare/v0.3.3...v0.3.4) (2020-09-01) ### Dependencies * update dependency com.google.cloud:google-cloud-shared-dependen… ([#127](https://www.github.com/googleapis/java-bigqueryconnection/issues/127)) ([752a655](https://www.github.com/googleapis/java-bigqueryconnection/commit/752a655a3e2840fd0217797465137f2611c08303)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- google-cloud-bigqueryconnection-bom/pom.xml | 12 ++++++------ google-cloud-bigqueryconnection/pom.xml | 4 ++-- grpc-google-cloud-bigqueryconnection-v1/pom.xml | 4 ++-- grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml | 4 ++-- pom.xml | 12 ++++++------ proto-google-cloud-bigqueryconnection-v1/pom.xml | 4 ++-- .../pom.xml | 4 ++-- samples/snapshot/pom.xml | 2 +- versions.txt | 10 +++++----- 11 files changed, 37 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 726f0bc6..21162374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +### [0.3.4](https://www.github.com/googleapis/java-bigqueryconnection/compare/v0.3.3...v0.3.4) (2020-09-01) + + +### Dependencies + +* update dependency com.google.cloud:google-cloud-shared-dependen… ([#127](https://www.github.com/googleapis/java-bigqueryconnection/issues/127)) ([752a655](https://www.github.com/googleapis/java-bigqueryconnection/commit/752a655a3e2840fd0217797465137f2611c08303)) + ### [0.3.3](https://www.github.com/googleapis/java-bigqueryconnection/compare/v0.3.2...v0.3.3) (2020-08-31) diff --git a/README.md b/README.md index e5c1941f..44d86667 100644 --- a/README.md +++ b/README.md @@ -29,11 +29,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-bigqueryconnection:0.3.3' +compile 'com.google.cloud:google-cloud-bigqueryconnection:0.3.4' ``` If you are using SBT, add this to your dependencies ```Scala -libraryDependencies += "com.google.cloud" % "google-cloud-bigqueryconnection" % "0.3.3" +libraryDependencies += "com.google.cloud" % "google-cloud-bigqueryconnection" % "0.3.4" ``` [//]: # ({x-version-update-end}) diff --git a/google-cloud-bigqueryconnection-bom/pom.xml b/google-cloud-bigqueryconnection-bom/pom.xml index 6727d11a..82b18080 100644 --- a/google-cloud-bigqueryconnection-bom/pom.xml +++ b/google-cloud-bigqueryconnection-bom/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection-bom - 0.3.4-SNAPSHOT + 0.3.4 pom com.google.cloud @@ -64,27 +64,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/google-cloud-bigqueryconnection/pom.xml b/google-cloud-bigqueryconnection/pom.xml index 1320de59..5e1b0b13 100644 --- a/google-cloud-bigqueryconnection/pom.xml +++ b/google-cloud-bigqueryconnection/pom.xml @@ -3,7 +3,7 @@ 4.0.0 com.google.cloud google-cloud-bigqueryconnection - 0.3.4-SNAPSHOT + 0.3.4 jar Google Cloud BigQuery Connections https://github.com/googleapis/java-bigqueryconnection @@ -11,7 +11,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.4-SNAPSHOT + 0.3.4 google-cloud-bigqueryconnection diff --git a/grpc-google-cloud-bigqueryconnection-v1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1/pom.xml index 355968f6..47b89422 100644 --- a/grpc-google-cloud-bigqueryconnection-v1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 grpc-google-cloud-bigqueryconnection-v1 GRPC library for grpc-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml index d8968334..9c90ceab 100644 --- a/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/grpc-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 grpc-google-cloud-bigqueryconnection-v1beta1 GRPC library for grpc-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/pom.xml b/pom.xml index ef05b6f3..5db2578e 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.google.cloud google-cloud-bigqueryconnection-parent pom - 0.3.4-SNAPSHOT + 0.3.4 Google Cloud BigQuery Connections Parent https://github.com/googleapis/java-bigqueryconnection @@ -70,27 +70,27 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 com.google.api.grpc grpc-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/proto-google-cloud-bigqueryconnection-v1/pom.xml b/proto-google-cloud-bigqueryconnection-v1/pom.xml index 96964660..3d7b7805 100644 --- a/proto-google-cloud-bigqueryconnection-v1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1 - 0.3.4-SNAPSHOT + 0.3.4 proto-google-cloud-bigqueryconnection-v1 PROTO library for proto-google-cloud-bigqueryconnection-v1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml index ac26c34c..8b2fa853 100644 --- a/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml +++ b/proto-google-cloud-bigqueryconnection-v1beta1/pom.xml @@ -4,13 +4,13 @@ 4.0.0 com.google.api.grpc proto-google-cloud-bigqueryconnection-v1beta1 - 0.3.4-SNAPSHOT + 0.3.4 proto-google-cloud-bigqueryconnection-v1beta1 PROTO library for proto-google-cloud-bigqueryconnection-v1beta1 com.google.cloud google-cloud-bigqueryconnection-parent - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/samples/snapshot/pom.xml b/samples/snapshot/pom.xml index 7347cc96..f77d133a 100644 --- a/samples/snapshot/pom.xml +++ b/samples/snapshot/pom.xml @@ -28,7 +28,7 @@ com.google.cloud google-cloud-bigqueryconnection - 0.3.4-SNAPSHOT + 0.3.4 diff --git a/versions.txt b/versions.txt index 854cb686..e8dc017b 100644 --- a/versions.txt +++ b/versions.txt @@ -1,8 +1,8 @@ # Format: # module:released-version:current-version -google-cloud-bigqueryconnection:0.3.3:0.3.4-SNAPSHOT -proto-google-cloud-bigqueryconnection-v1:0.3.3:0.3.4-SNAPSHOT -grpc-google-cloud-bigqueryconnection-v1:0.3.3:0.3.4-SNAPSHOT -proto-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.4-SNAPSHOT -grpc-google-cloud-bigqueryconnection-v1beta1:0.3.3:0.3.4-SNAPSHOT \ No newline at end of file +google-cloud-bigqueryconnection:0.3.4:0.3.4 +proto-google-cloud-bigqueryconnection-v1:0.3.4:0.3.4 +grpc-google-cloud-bigqueryconnection-v1:0.3.4:0.3.4 +proto-google-cloud-bigqueryconnection-v1beta1:0.3.4:0.3.4 +grpc-google-cloud-bigqueryconnection-v1beta1:0.3.4:0.3.4 \ No newline at end of file