diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 45d822170..a02ff521b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.1 +current_version = 1.6.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.2.md b/.changes/1.6.2.md new file mode 100644 index 000000000..cdf13b3b6 --- /dev/null +++ b/.changes/1.6.2.md @@ -0,0 +1,5 @@ +## dbt-bigquery 1.6.2 - August 22, 2023 + +### Fixes + +- changes expected value types to AnyInteger to take into account changes in core ([#889](https://github.com/dbt-labs/dbt-bigquery/issues/889)) diff --git a/.changes/unreleased/Fixes-20230821-180758.yaml b/.changes/unreleased/Fixes-20230821-180758.yaml deleted file mode 100644 index 01d042a2b..000000000 --- a/.changes/unreleased/Fixes-20230821-180758.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-08-21T18:07:58.746741-05:00 -custom: - Author: McKnight-42 - Issue: "889" diff --git a/CHANGELOG.md b/CHANGELOG.md index a0b9efb18..eda8cc797 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.2 - August 22, 2023 + +### Fixes + +- changes expected value types to AnyInteger to take into account changes in core ([#889](https://github.com/dbt-labs/dbt-bigquery/issues/889)) + + + ## dbt-bigquery 1.6.1 - August 04, 2023 ### Fixes @@ -14,7 +22,6 @@ ### Contributors - [@cemsbr](https://github.com/cemsbr) ([#849](https://github.com/dbt-labs/dbt-bigquery/issues/849)) - ## dbt-bigquery 1.6.0 - July 31, 2023 ### Breaking Changes diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index cead7e895..a9851426d 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.6.1" +version = "1.6.2" diff --git a/setup.py b/setup.py index 1d7db89f9..579c2e2f2 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.1" +package_version = "1.6.2" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""