diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9b8844834..d277ea92a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.8 +current_version = 1.7.9 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.9.md b/.changes/1.7.9.md new file mode 100644 index 000000000..2f2d0fb0d --- /dev/null +++ b/.changes/1.7.9.md @@ -0,0 +1,9 @@ +## dbt-bigquery 1.7.9 - May 15, 2024 + +### Features + +- Add configuration options `enable_list_inference` and `intermediate_format` for python models ([#1047](https://github.com/dbt-labs/dbt-bigquery/issues/1047), [#1114](https://github.com/dbt-labs/dbt-bigquery/issues/1114)) + +### Fixes + +- Default `enableListInference` to `True` for python models to support nested lists ([#1047](https://github.com/dbt-labs/dbt-bigquery/issues/1047), [#1114](https://github.com/dbt-labs/dbt-bigquery/issues/1114)) diff --git a/.changes/unreleased/Features-20240426-105319.yaml b/.changes/unreleased/Features-20240426-105319.yaml deleted file mode 100644 index 0af2f9aa8..000000000 --- a/.changes/unreleased/Features-20240426-105319.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Add configuration options `enable_list_inference` and `intermediate_format` for python - models -time: 2024-04-26T10:53:19.874239-04:00 -custom: - Author: mikealfare - Issue: 1047 1114 diff --git a/.changes/unreleased/Fixes-20240426-105224.yaml b/.changes/unreleased/Fixes-20240426-105224.yaml deleted file mode 100644 index 624006ba5..000000000 --- a/.changes/unreleased/Fixes-20240426-105224.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Default `enableListInference` to `True` for python models to support nested - lists -time: 2024-04-26T10:52:24.827314-04:00 -custom: - Author: mikealfare - Issue: 1047 1114 diff --git a/CHANGELOG.md b/CHANGELOG.md index 48a00537d..94d0c12d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,19 @@ - "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.7.8 - May 03, 2024 +## dbt-bigquery 1.7.9 - May 15, 2024 + +### Features +- Add configuration options `enable_list_inference` and `intermediate_format` for python models ([#1047](https://github.com/dbt-labs/dbt-bigquery/issues/1047), [#1114](https://github.com/dbt-labs/dbt-bigquery/issues/1114)) + +### Fixes +- Default `enableListInference` to `True` for python models to support nested lists ([#1047](https://github.com/dbt-labs/dbt-bigquery/issues/1047), [#1114](https://github.com/dbt-labs/dbt-bigquery/issues/1114)) + + + +## dbt-bigquery 1.7.8 - May 03, 2024 ## dbt-bigquery 1.7.7 - March 28, 2024 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 9bebf548a..52a993a81 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.7.8" +version = "1.7.9" diff --git a/setup.py b/setup.py index 47841c5ca..e02023518 100644 --- a/setup.py +++ b/setup.py @@ -58,7 +58,7 @@ def _dbt_core_version(plugin_version: str) -> str: package_name = "dbt-bigquery" -package_version = "1.7.8" +package_version = "1.7.9" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""