Skip to content

Commit 3e143d7

Browse files
authored
chore: release 0.1.1 (#5)
Change-Id: I10199358657195d60fb414360f1bff4a94490bad
1 parent 264142e commit 3e143d7

File tree

5 files changed

+18
-8
lines changed

5 files changed

+18
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

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

7+
## 0.1.1 (2023-08-14)
8+
9+
### Documentation
10+
11+
* Correct link to code repository in `setup.py` and use correct terminology for
12+
`console.cloud.google.com` links.
13+
714
## 0.1.0 (2023-08-11)
815

916
### Features

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ BigQuery connections are created in the same location as the BigQuery
117117
DataFrames session, using the name you provide in the custom function
118118
definition. To view and manage connections, do the following:
119119

120-
1. Go to `BigQuery Studio <https://console.cloud.google.com/bigquery>`__.
120+
1. Go to `BigQuery in the Google Cloud Console <https://console.cloud.google.com/bigquery>`__.
121121
2. Select the project in which you created the remote function.
122122
3. In the Explorer pane, expand that project and then expand External connections.
123123

@@ -127,7 +127,7 @@ the location used by the BigQuery DataFrames session. For example,
127127
``bigframes_temp_us_central1``. To view and manage remote functions, do
128128
the following:
129129

130-
1. Go to `BigQuery Studio <https://console.cloud.google.com/bigquery>`__.
130+
1. Go to `BigQuery in the Google Cloud Console <https://console.cloud.google.com/bigquery>`__.
131131
2. Select the project in which you created the remote function.
132132
3. In the Explorer pane, expand that project, expand the dataset in which you
133133
created the remote function, and then expand Routines.

bigframes/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.1.0"
15+
__version__ = "0.1.1"

docs/user_guide/bigframes.pandas/remote_functions.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ Using Existing Functions
104104
========================
105105

106106
If you have already defined a custom function in BigQuery, either in the
107-
BigQuery Studio or with the `remote_function` decorator above or otherwise, you
108-
may use it with BigQuery DataFrames with the `read_gbq_function` method.
107+
BigQuery Google Cloud Console or with the `remote_function` decorator above or
108+
otherwise, you may use it with BigQuery DataFrames with the `read_gbq_function`
109+
method.
109110

110111
More details are available via the `help` command:
111112

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222
# Package metadata.
2323

2424
name = "bigframes"
25-
description = "Scalable DataFrames with BigQuery"
25+
description = (
26+
"BigQuery DataFrames -- scalable analytics and machine learning with BigQuery"
27+
)
2628

2729
# Should be one of:
2830
# 'Development Status :: 3 - Alpha'
@@ -85,9 +87,9 @@
8587
description=description,
8688
long_description=readme,
8789
author="Google LLC",
88-
author_email="googleapis-packages@google.com",
90+
author_email="bigframes-feedback@google.com",
8991
license="Apache 2.0",
90-
url="https://github.com/googleapis/python-bigquery",
92+
url="https://github.com/googleapis/python-bigquery-dataframes",
9193
classifiers=[
9294
release_status,
9395
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)