Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: googleapis/python-bigquery-dataframes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Choose a base ref
...
head repository: googleapis/python-bigquery-dataframes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.3.2
Choose a head ref
  • 2 commits
  • 3 files changed
  • 2 contributors

Commits on Sep 6, 2023

  1. fix: make release.sh script for PyPI upload executable (#20)

    Change-Id: I45939017295e5c6c4942087afecb5659b423d4e9
    tswast authored Sep 6, 2023
    Copy the full SHA
    9951610 View commit details
  2. chore(main): release 0.3.2 (#21)

    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] authored Sep 6, 2023
    Copy the full SHA
    e76b5e7 View commit details
Showing with 11 additions and 4 deletions.
  1. +3 −3 .kokoro/release.sh
  2. +7 −0 CHANGELOG.md
  3. +1 −1 bigframes/version.py
6 changes: 3 additions & 3 deletions .kokoro/release.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -16,14 +16,14 @@
set -eo pipefail

# Start the releasetool reporter
python3 -m pip install --require-hashes -r github/python-bigquery-dataframes/.kokoro/requirements.txt
python3 -m pip install --require-hashes -r github/bigframes/.kokoro/requirements.txt
python3 -m releasetool publish-reporter-script > /tmp/publisher-script; source /tmp/publisher-script

# Disable buffering, so that the logs stream through.
export PYTHONUNBUFFERED=1

# Move into the package, build the distribution and upload.
TWINE_PASSWORD=$(cat "${KOKORO_KEYSTORE_DIR}/73713_google-cloud-pypi-token-keystore-1")
cd github/python-bigquery-dataframes
cd github/bigframes
python3 setup.py sdist bdist_wheel
twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*
twine upload --username __token__ --password "${TWINE_PASSWORD}" dist/*
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,13 @@

[1]: https://pypi.org/project/bigframes/#history

## [0.3.2](https://github.com/googleapis/python-bigquery-dataframes/compare/v0.3.1...v0.3.2) (2023-09-06)


### Bug Fixes

* Make release.sh script for PyPI upload executable ([#20](https://github.com/googleapis/python-bigquery-dataframes/issues/20)) ([9951610](https://github.com/googleapis/python-bigquery-dataframes/commit/995161068b118a639903878acfde3202087c25f8))

## [0.3.1](https://github.com/googleapis/python-bigquery-dataframes/compare/v0.3.0...v0.3.1) (2023-09-05)


2 changes: 1 addition & 1 deletion bigframes/version.py
Original file line number Diff line number Diff line change
@@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "0.3.1"
__version__ = "0.3.2"