From 9b6fa7de4b758b747157d4a8aada65e06226d7bd Mon Sep 17 00:00:00 2001 From: Prad Nelluru Date: Mon, 9 Dec 2019 21:53:45 -0500 Subject: [PATCH 1/2] Release 1.0.3 --- pubsub/CHANGELOG.md | 25 +++++++++++++++++++++++++ pubsub/setup.py | 2 +- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/pubsub/CHANGELOG.md b/pubsub/CHANGELOG.md index 09716f05a9cf..8fd720d93603 100644 --- a/pubsub/CHANGELOG.md +++ b/pubsub/CHANGELOG.md @@ -4,6 +4,31 @@ [1]: https://pypi.org/project/google-cloud-pubsub/#history +## 1.0.3 + +12-09-2019 18:51 PST + +### Implementation Changes +- Update client configurations (via synth) ([#9784](https://github.com/googleapis/google-cloud-python/pull/9784)) +- Include request overhead when computing publish batch size overflow ([#9911](https://github.com/googleapis/google-cloud-python/pull/9911)) +- Split large (mod)ACK requests into smaller ones ([#9594](https://github.com/googleapis/google-cloud-python/pull/9594)) +- Fix messages delivered multiple times despite a long ACK deadline ([#9525](https://github.com/googleapis/google-cloud-python/pull/9525)) +- Update batching and flow control parameters to be same as the other client libraries ([#9597](https://github.com/googleapis/google-cloud-python/pull/9597)) +- Add 'StreamingPullManager._should_terminate' ([#9335](https://github.com/googleapis/google-cloud-python/pull/9335)) + +### New Features +- Add stop method ([#9365](https://github.com/googleapis/google-cloud-python/pull/9365)) + +### Dependencies +- Add python 2 sunset banner to documentation ([#9036](https://github.com/googleapis/google-cloud-python/pull/9036)) + +### Documentation +- Change spacing in docs templates (via synth) ([#9759](https://github.com/googleapis/google-cloud-python/pull/9759)) + +### Internal / Testing Changes +- Refactor fake leaser test helper ([#9632](https://github.com/googleapis/google-cloud-python/pull/9632)) +- Add subscriber role test for streaming ([#9507](https://github.com/googleapis/google-cloud-python/pull/9507)) + ## 1.0.2 09-30-2019 11:57 PDT diff --git a/pubsub/setup.py b/pubsub/setup.py index 45e2cc04c07d..fddb21bb46fd 100644 --- a/pubsub/setup.py +++ b/pubsub/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-pubsub" description = "Google Cloud Pub/Sub API client library" -version = "1.0.2" +version = "1.0.3" # Should be one of: # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta' From 85d75bf96b210265916de0cca65a006268a4ba67 Mon Sep 17 00:00:00 2001 From: Prad Nelluru Date: Tue, 10 Dec 2019 14:39:20 -0500 Subject: [PATCH 2/2] Fix commit message formatting. Change version from 1.0.3 to 1.1.0 because the stop method was added to the publisher client. --- pubsub/CHANGELOG.md | 24 ++++++++++++------------ pubsub/setup.py | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/pubsub/CHANGELOG.md b/pubsub/CHANGELOG.md index 8fd720d93603..ddca773a09a7 100644 --- a/pubsub/CHANGELOG.md +++ b/pubsub/CHANGELOG.md @@ -4,30 +4,30 @@ [1]: https://pypi.org/project/google-cloud-pubsub/#history -## 1.0.3 +## 1.1.0 12-09-2019 18:51 PST ### Implementation Changes -- Update client configurations (via synth) ([#9784](https://github.com/googleapis/google-cloud-python/pull/9784)) -- Include request overhead when computing publish batch size overflow ([#9911](https://github.com/googleapis/google-cloud-python/pull/9911)) -- Split large (mod)ACK requests into smaller ones ([#9594](https://github.com/googleapis/google-cloud-python/pull/9594)) -- Fix messages delivered multiple times despite a long ACK deadline ([#9525](https://github.com/googleapis/google-cloud-python/pull/9525)) -- Update batching and flow control parameters to be same as the other client libraries ([#9597](https://github.com/googleapis/google-cloud-python/pull/9597)) -- Add 'StreamingPullManager._should_terminate' ([#9335](https://github.com/googleapis/google-cloud-python/pull/9335)) +- Update client configurations (via synth). ([#9784](https://github.com/googleapis/google-cloud-python/pull/9784)) +- Include request overhead when computing publish batch size overflow. ([#9911](https://github.com/googleapis/google-cloud-python/pull/9911)) +- Split large (mod)ACK requests into smaller ones. ([#9594](https://github.com/googleapis/google-cloud-python/pull/9594)) +- Fix messages delivered multiple times despite a long ACK deadline. ([#9525](https://github.com/googleapis/google-cloud-python/pull/9525)) +- Update batching and flow control parameters to be same as the other client libraries. ([#9597](https://github.com/googleapis/google-cloud-python/pull/9597)) +- Add `StreamingPullManager._should_terminate`. ([#9335](https://github.com/googleapis/google-cloud-python/pull/9335)) ### New Features -- Add stop method ([#9365](https://github.com/googleapis/google-cloud-python/pull/9365)) +- Add stop method. ([#9365](https://github.com/googleapis/google-cloud-python/pull/9365)) ### Dependencies -- Add python 2 sunset banner to documentation ([#9036](https://github.com/googleapis/google-cloud-python/pull/9036)) +- Add Python 2 sunset banner to documentation. ([#9036](https://github.com/googleapis/google-cloud-python/pull/9036)) ### Documentation -- Change spacing in docs templates (via synth) ([#9759](https://github.com/googleapis/google-cloud-python/pull/9759)) +- Change spacing in docs templates (via synth). ([#9759](https://github.com/googleapis/google-cloud-python/pull/9759)) ### Internal / Testing Changes -- Refactor fake leaser test helper ([#9632](https://github.com/googleapis/google-cloud-python/pull/9632)) -- Add subscriber role test for streaming ([#9507](https://github.com/googleapis/google-cloud-python/pull/9507)) +- Refactor fake leaser test helper. ([#9632](https://github.com/googleapis/google-cloud-python/pull/9632)) +- Add subscriber role test for streaming. ([#9507](https://github.com/googleapis/google-cloud-python/pull/9507)) ## 1.0.2 diff --git a/pubsub/setup.py b/pubsub/setup.py index fddb21bb46fd..e26fb4b75778 100644 --- a/pubsub/setup.py +++ b/pubsub/setup.py @@ -22,7 +22,7 @@ name = "google-cloud-pubsub" description = "Google Cloud Pub/Sub API client library" -version = "1.0.3" +version = "1.1.0" # Should be one of: # 'Development Status :: 3 - Alpha' # 'Development Status :: 4 - Beta'