Skip to content

Commit

Permalink
Bumping version to 1.3.0b2 and generate CHANGELOG (#292)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com>
  • Loading branch information
github-actions[bot] and FishtownBuildBot authored Aug 29, 2022
1 parent 170c65e commit 597aaa4
Show file tree
Hide file tree
Showing 9 changed files with 22 additions and 4 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 = 1.3.0b1
current_version = 1.3.0b2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
10 changes: 10 additions & 0 deletions .changes/1.3.0-b2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## dbt-bigquery 1.3.0-b2 - August 29, 2022
### Under the Hood
- Add changie to dbt-bigquery ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254), [#253](https://github.com/dbt-labs/dbt-bigquery/pull/253))
- Add location/job_id/project_id to adapter response to enable easy job linking ([#92](https://github.com/dbt-labs/dbt-bigquery/issues/92), [#250](https://github.com/dbt-labs/dbt-bigquery/pull/250))
- Adding `slot_ms` go `BigQueryAdapterResponse` ([#194](https://github.com/dbt-labs/dbt-bigquery/issues/194), [#195](https://github.com/dbt-labs/dbt-bigquery/pull/195))
- specify supported_languages for materialization that support python models ([#288](https://github.com/dbt-labs/dbt-bigquery/issues/288), [#290](https://github.com/dbt-labs/dbt-bigquery/pull/290))

### Contributors
- [@Kayrnt](https://github.com/Kayrnt) ([#250](https://github.com/dbt-labs/dbt-bigquery/pull/250))
- [@yu-iskw](https://github.com/yu-iskw) ([#195](https://github.com/dbt-labs/dbt-bigquery/pull/195))
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,22 @@
- Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases.
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
- 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)
## dbt-bigquery 1.3.0-b2 - August 29, 2022
### Under the Hood
- Add changie to dbt-bigquery ([#254](https://github.com/dbt-labs/dbt-bigquery/issues/254), [#253](https://github.com/dbt-labs/dbt-bigquery/pull/253))
- Add location/job_id/project_id to adapter response to enable easy job linking ([#92](https://github.com/dbt-labs/dbt-bigquery/issues/92), [#250](https://github.com/dbt-labs/dbt-bigquery/pull/250))
- Adding `slot_ms` go `BigQueryAdapterResponse` ([#194](https://github.com/dbt-labs/dbt-bigquery/issues/194), [#195](https://github.com/dbt-labs/dbt-bigquery/pull/195))
- specify supported_languages for materialization that support python models ([#288](https://github.com/dbt-labs/dbt-bigquery/issues/288), [#290](https://github.com/dbt-labs/dbt-bigquery/pull/290))

### Contributors
- [@Kayrnt](https://github.com/Kayrnt) ([#250](https://github.com/dbt-labs/dbt-bigquery/pull/250))
- [@yu-iskw](https://github.com/yu-iskw) ([#195](https://github.com/dbt-labs/dbt-bigquery/pull/195))
## dbt-bigquery 1.3.0-b1 - August 04, 2022
### Features
- Implement `create_schema` via SQL, instead of Python method, allowing users to override if desired. drop_schema remains a Python method for the time being. ([#182](https://github.com/dbt-labs/dbt-bigquery/issues/182), [#183](https://github.com/dbt-labs/dbt-bigquery/pull/183))
- Added table and incrementail materializations for python models via DataProc. ([#209](https://github.com/dbt-labs/dbt-bigquery/issues/209), [#226](https://github.com/dbt-labs/dbt-bigquery/pull/226))
### Under the Hood
- Implement minimal changes to support dbt Core incremental materialization refactor. ([#232](https://github.com/dbt-labs/dbt-bigquery/issues/232), [#223](https://github.com/dbt-labs/dbt-bigquery/pull/223))

## Previous Releases
For information on prior major and minor releases, see their changelogs:
- [1.2](https://github.com/dbt-labs/dbt-bigquery/blob/1.2.latest/CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/bigquery/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.3.0b1"
version = "1.3.0b2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _get_dbt_core_version():


package_name = "dbt-bigquery"
package_version = "1.3.0b1"
package_version = "1.3.0b2"
dbt_core_version = _get_dbt_core_version()
description = """The BigQuery adapter plugin for dbt"""

Expand Down

0 comments on commit 597aaa4

Please sign in to comment.