Skip to content

Commit

Permalink
Merge pull request #357 from square/naman/bump-0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
namanjain committed Nov 16, 2022
2 parents c92e4d0 + 1f9960d commit 3b88338
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.11.0
current_version = 0.11.1
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bionic-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
# build failures.
pip freeze
- name: Set up gcloud
uses: google-github-actions/setup-gcloud@main
uses: google-github-actions/setup-gcloud@v0.2.1
with:
service_account_key: ${{ secrets.GCP_SA_KEY }}
export_default_credentials: true
Expand Down
2 changes: 1 addition & 1 deletion bionic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
from . import protocol # noqa: F401
from . import util # noqa: F401

__version__ = "0.11.0"
__version__ = "0.11.1"
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
author = "Janek Klawe"

# The short X.Y version
version = "0.11.0"
version = "0.11.1"
# The full version, including alpha/beta/rc tags
release = version

Expand Down
7 changes: 5 additions & 2 deletions docs/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,18 @@ For each release, we list the following types of change (in this order):
- **Development Changes**: Significant changes to Bionic's development process, such
as changes to our Pytest configuration or our Continuous Integration ("CI").

Upcoming Version (Not Yet Released)
-----------------------------------
.. Upcoming Version (Not Yet Released)
.. -----------------------------------
.. Record any notable changes in this section. When we update the current version,
add a new version heading below, and then comment out the heading above until more
changes are added. This way, the "Upcoming Version" section will be never be visible
in the "stable" docs (corresponding to the last release) but will be visible in the
"latest" docs (corresponding to the master branch).
0.11.1 (Nov 14, 2022)
---------------------

Bug Fixes
.........

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@
"numpy",
"pandas",
"pyarrow",
# 0.19.1 had a regression which was fixed in 0.19.2
# See tobgu/pyrsistent#263 on GitHub.
"pyrsistent!=0.19.1",
"decorator<5",
]

setup(
name="bionic",
version="0.11.0",
version="0.11.1",
description=(
"A Python framework for building, running, and sharing data science "
"workflows"
Expand Down

0 comments on commit 3b88338

Please sign in to comment.