diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7a3428415..a84ec22e0 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.4 +current_version = 1.6.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.5.md b/.changes/1.6.5.md new file mode 100644 index 000000000..4adaaa537 --- /dev/null +++ b/.changes/1.6.5.md @@ -0,0 +1,6 @@ +## dbt-bigquery 1.6.5 - September 18, 2023 + +### Fixes + +- Time out queries if user supplies `job_execution_timeout` ([#231](https://github.com/dbt-labs/dbt-bigquery/issues/231)) +- changes expected value types to AnyInteger to take into account changes in core ([#915](https://github.com/dbt-labs/dbt-bigquery/issues/915)) diff --git a/.changes/unreleased/Fixes-20230829-162111.yaml b/.changes/unreleased/Fixes-20230829-162111.yaml deleted file mode 100644 index 5d34acd3e..000000000 --- a/.changes/unreleased/Fixes-20230829-162111.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Time out queries if user supplies `job_execution_timeout` -time: 2023-08-29T16:21:11.69291-07:00 -custom: - Author: colin-rogers-dbt McKnight-42 - Issue: "231" diff --git a/.changes/unreleased/Fixes-20230907-161347.yaml b/.changes/unreleased/Fixes-20230907-161347.yaml deleted file mode 100644 index b0309afc2..000000000 --- a/.changes/unreleased/Fixes-20230907-161347.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: changes expected value types to AnyInteger to take into account changes in core -time: 2023-09-07T16:13:47.005796-05:00 -custom: - Author: McKnight-42 - Issue: "915" diff --git a/CHANGELOG.md b/CHANGELOG.md index 26a8f4d4a..1ca970d5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,13 +5,20 @@ - "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.6.4 - August 30, 2023 +## dbt-bigquery 1.6.5 - September 18, 2023 ### Fixes -- remove senesitive creds from dbt debug stdout ([#900](https://github.com/dbt-labs/dbt-bigquery/issues/900)) +- Time out queries if user supplies `job_execution_timeout` ([#231](https://github.com/dbt-labs/dbt-bigquery/issues/231)) +- changes expected value types to AnyInteger to take into account changes in core ([#915](https://github.com/dbt-labs/dbt-bigquery/issues/915)) + + +## dbt-bigquery 1.6.4 - August 30, 2023 + +### Fixes +- remove senesitive creds from dbt debug stdout ([#900](https://github.com/dbt-labs/dbt-bigquery/issues/900)) ## dbt-bigquery 1.6.3 - August 23, 2023 diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index cd70cb070..e46512e4a 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.4" +version = "1.6.5" diff --git a/setup.py b/setup.py index 226ab5eac..bde737837 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.6.4" +package_version = "1.6.5" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""