diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9d72f7ee6..28bbb22f3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.6 +current_version = 1.5.7 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.7.md b/.changes/1.5.7.md new file mode 100644 index 000000000..26130859a --- /dev/null +++ b/.changes/1.5.7.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.5.7 - September 28, 2023 + +### Under the Hood + +- Add tests for inlined limit + sql-header in dbt show query ([#940](https://github.com/dbt-labs/dbt-bigquery/issues/940)) diff --git a/.changes/unreleased/Under the Hood-20230925-143628.yaml b/.changes/unreleased/Under the Hood-20230925-143628.yaml deleted file mode 100644 index fb925ae40..000000000 --- a/.changes/unreleased/Under the Hood-20230925-143628.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add tests for inlined limit + sql-header in dbt show query -time: 2023-09-25T14:36:28.335466+01:00 -custom: - Author: michelleark - Issue: "940" diff --git a/CHANGELOG.md b/CHANGELOG.md index 4037d45c0..d4e38cce4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,10 +5,16 @@ - "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.5.6 - August 21, 2023 +## dbt-bigquery 1.5.7 - September 28, 2023 + +### Under the Hood +- Add tests for inlined limit + sql-header in dbt show query ([#940](https://github.com/dbt-labs/dbt-bigquery/issues/940)) + +## dbt-bigquery 1.5.6 - August 21, 2023 + ## dbt-bigquery 1.5.5 - August 04, 2023 ### Fixes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index f8ec07704..7d7c707ff 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.5.6" +version = "1.5.7" diff --git a/setup.py b/setup.py index 8f9e9e308..e6496d1a2 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.5.6" +package_version = "1.5.7" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""