Skip to content

Commit ea345fd

Browse files
Bumping version to 1.8.0rc1 and generate changelog
1 parent 42db89e commit ea345fd

13 files changed

+47
-5
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.8.0b2
2+
current_version = 1.8.0rc1
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.8.0-rc1.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## dbt-bigquery 1.8.0-rc1 - May 03, 2024
2+
3+
### Fixes
4+
5+
- Fix dbt.string_literal for BQ when there are newlines ([#1088](https://github.com/dbt-labs/dbt-bigquery/issues/1088))
6+
- Stop adding aliases to render_limited output ([#1190](https://github.com/dbt-labs/dbt-bigquery/issues/1190))
7+
8+
### Under the Hood
9+
10+
- Update dependabot config to cover GHA ([#1176](https://github.com/dbt-labs/dbt-bigquery/issues/1176))
11+
12+
### Dependencies
13+
14+
- Bump dorny/paths-filter from 2 to 3 ([#1179](https://github.com/dbt-labs/dbt-bigquery/pull/1179))
15+
- Bump actions/github-script from 6 to 7 ([#1180](https://github.com/dbt-labs/dbt-bigquery/pull/1180))
16+
- Bump dbt-labs/actions from 1.1.0 to 1.1.1 ([#1181](https://github.com/dbt-labs/dbt-bigquery/pull/1181))
17+
- Bump actions/checkout from 3 to 4 ([#1183](https://github.com/dbt-labs/dbt-bigquery/pull/1183))
18+
- Bump actions/setup-python from 4 to 5 ([#1182](https://github.com/dbt-labs/dbt-bigquery/pull/1182))
19+
20+
### Contributors
21+
- [@b-per](https://github.com/b-per) ([#1088](https://github.com/dbt-labs/dbt-bigquery/issues/1088))

CHANGELOG.md

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@
55
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
66
- Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-bigquery/blob/main/CONTRIBUTING.md#adding-changelog-entry)
77

8+
## dbt-bigquery 1.8.0-rc1 - May 03, 2024
9+
10+
### Fixes
11+
12+
- Fix dbt.string_literal for BQ when there are newlines ([#1088](https://github.com/dbt-labs/dbt-bigquery/issues/1088))
13+
- Stop adding aliases to render_limited output ([#1190](https://github.com/dbt-labs/dbt-bigquery/issues/1190))
14+
15+
### Under the Hood
16+
17+
- Update dependabot config to cover GHA ([#1176](https://github.com/dbt-labs/dbt-bigquery/issues/1176))
18+
19+
### Dependencies
20+
21+
- Bump dorny/paths-filter from 2 to 3 ([#1179](https://github.com/dbt-labs/dbt-bigquery/pull/1179))
22+
- Bump actions/github-script from 6 to 7 ([#1180](https://github.com/dbt-labs/dbt-bigquery/pull/1180))
23+
- Bump dbt-labs/actions from 1.1.0 to 1.1.1 ([#1181](https://github.com/dbt-labs/dbt-bigquery/pull/1181))
24+
- Bump actions/checkout from 3 to 4 ([#1183](https://github.com/dbt-labs/dbt-bigquery/pull/1183))
25+
- Bump actions/setup-python from 4 to 5 ([#1182](https://github.com/dbt-labs/dbt-bigquery/pull/1182))
26+
27+
### Contributors
28+
- [@b-per](https://github.com/b-per) ([#1088](https://github.com/dbt-labs/dbt-bigquery/issues/1088))
29+
30+
831
## dbt-bigquery 1.8.0-b2 - April 03, 2024
932

1033
### Features
@@ -29,8 +52,6 @@
2952

3053
- Pin `black>=24.3` in `dev-requirements.txt` ([#1151](https://github.com/dbt-labs/dbt-bigquery/pull/1151))
3154

32-
33-
3455
## dbt-bigquery 1.8.0-b1 - March 01, 2024
3556

3657
### Features

dbt/adapters/bigquery/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.8.0b2"
1+
version = "1.8.0rc1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _dbt_bigquery_version() -> str:
3636

3737

3838
package_name = "dbt-bigquery"
39-
package_version = "1.8.0b2"
39+
package_version = "1.8.0rc1"
4040
description = """The BigQuery adapter plugin for dbt"""
4141

4242
setup(

0 commit comments

Comments
 (0)