diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 96336155f..62f57afd3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.0rc1 +current_version = 1.4.0 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.changes/1.4.0-b1.md b/.changes/1.4.0-b1.md deleted file mode 100644 index 22f898ceb..000000000 --- a/.changes/1.4.0-b1.md +++ /dev/null @@ -1,18 +0,0 @@ -## dbt-bigquery 1.4.0-b1 - December 15, 2022 -### Features -- Support for ingestion time partition table on BigQuery as incremental materialization ([#75](https://github.com/dbt-labs/dbt-bigquery/issues/75), [#136](https://github.com/dbt-labs/dbt-bigquery/pull/136)) -- Migrate dbt-utils current_timestamp macros into core + adapters ([#324](https://github.com/dbt-labs/dbt-bigquery/issues/324), [#323](https://github.com/dbt-labs/dbt-bigquery/pull/323)) -- Optimize insert_overwrite incremental strategy with WRITE_TRUNCATE / Partition copy ([#77](https://github.com/dbt-labs/dbt-bigquery/issues/77), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167)) -### Fixes -- use execution_project in python models ([#355](https://github.com/dbt-labs/dbt-bigquery/issues/355), [#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) -- fix args for console link logging ([#362](https://github.com/dbt-labs/dbt-bigquery/issues/362), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) -### Under the Hood -- event logging changes to be in parity with dbt-core post pr#6291 ([#6139](https://github.com/dbt-labs/dbt-bigquery/issues/6139), [#410](https://github.com/dbt-labs/dbt-bigquery/pull/410)) -- fix issue with tox 4.0.0 release which changes passenv syntax for space-separated variables ([#411](https://github.com/dbt-labs/dbt-bigquery/issues/411), [#411](https://github.com/dbt-labs/dbt-bigquery/pull/411)) -### Dependencies -- Bump google-cloud-bigquery dependency to < 3.3.3 ([#269](https://github.com/dbt-labs/dbt-bigquery/issues/269), [#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) - -### Contributors -- [@Kayrnt](https://github.com/Kayrnt) ([#136](https://github.com/dbt-labs/dbt-bigquery/pull/136), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) -- [@eplus-aolalere](https://github.com/eplus-aolalere) ([#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) -- [@ericapetersson](https://github.com/ericapetersson) ([#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) diff --git a/.changes/1.4.0-rc1.md b/.changes/1.4.0.md similarity index 52% rename from .changes/1.4.0-rc1.md rename to .changes/1.4.0.md index 01958e0fb..d782729e8 100644 --- a/.changes/1.4.0-rc1.md +++ b/.changes/1.4.0.md @@ -1,21 +1,32 @@ -## dbt-bigquery 1.4.0-rc1 - January 11, 2023 +## dbt-bigquery 1.4.0 - January 25, 2023 ### Features +- Support for ingestion time partition table on BigQuery as incremental materialization ([#75](https://github.com/dbt-labs/dbt-bigquery/issues/75), [#136](https://github.com/dbt-labs/dbt-bigquery/pull/136)) - incremental predicates ([#283](https://github.com/dbt-labs/dbt-bigquery/issues/283), [#284](https://github.com/dbt-labs/dbt-bigquery/pull/284)) +- Migrate dbt-utils current_timestamp macros into core + adapters ([#324](https://github.com/dbt-labs/dbt-bigquery/issues/324), [#323](https://github.com/dbt-labs/dbt-bigquery/pull/323)) +- Optimize insert_overwrite incremental strategy with WRITE_TRUNCATE / Partition copy ([#77](https://github.com/dbt-labs/dbt-bigquery/issues/77), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167)) - Support BigQuery 'labels' and 'hours_to_expiration' configs for seeds. ([#125](https://github.com/dbt-labs/dbt-bigquery/issues/125), [#133](https://github.com/dbt-labs/dbt-bigquery/pull/133)) - Fetch table description to `catalog.json`, so it can be shown in dbt docs ([#173](https://github.com/dbt-labs/dbt-bigquery/issues/173), [#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) ### Fixes +- use execution_project in python models ([#355](https://github.com/dbt-labs/dbt-bigquery/issues/355), [#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) +- fix args for console link logging ([#362](https://github.com/dbt-labs/dbt-bigquery/issues/362), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) - stop eliminating trailing whitespace in incremental merge sql ([#457](https://github.com/dbt-labs/dbt-bigquery/issues/457), [#458](https://github.com/dbt-labs/dbt-bigquery/pull/458)) ### Under the Hood - use gcp retry logic for new connections ([#229](https://github.com/dbt-labs/dbt-bigquery/issues/229), [#230](https://github.com/dbt-labs/dbt-bigquery/pull/230)) +- event logging changes to be in parity with dbt-core post pr#6291 ([#6139](https://github.com/dbt-labs/dbt-bigquery/issues/6139), [#410](https://github.com/dbt-labs/dbt-bigquery/pull/410)) +- fix issue with tox 4.0.0 release which changes passenv syntax for space-separated variables ([#411](https://github.com/dbt-labs/dbt-bigquery/issues/411), [#411](https://github.com/dbt-labs/dbt-bigquery/pull/411)) - Truncates Job Labels to 63 Characters ([#202](https://github.com/dbt-labs/dbt-bigquery/issues/202), [#442](https://github.com/dbt-labs/dbt-bigquery/pull/442)) - Partition By unit test was failing, referenced the incorrect exception to be raised ([#443](https://github.com/dbt-labs/dbt-bigquery/issues/443), [#445](https://github.com/dbt-labs/dbt-bigquery/pull/445)) - Update exception names to match dbt-core ([#441](https://github.com/dbt-labs/dbt-bigquery/issues/441), [#460](https://github.com/dbt-labs/dbt-bigquery/pull/460)) ### Dependencies +- Bump google-cloud-bigquery dependency to < 3.3.3 ([#269](https://github.com/dbt-labs/dbt-bigquery/issues/269), [#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) - Add supoort for python 3.11 ([#407](https://github.com/dbt-labs/dbt-bigquery/issues/407), [#431](https://github.com/dbt-labs/dbt-bigquery/pull/431)) ### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#136](https://github.com/dbt-labs/dbt-bigquery/pull/136), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) - [@McKnight-42,](https://github.com/McKnight-42,) ([#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) - [@darrylng](https://github.com/darrylng) ([#133](https://github.com/dbt-labs/dbt-bigquery/pull/133)) - [@dave-connors-3](https://github.com/dave-connors-3) ([#284](https://github.com/dbt-labs/dbt-bigquery/pull/284)) +- [@eplus-aolalere](https://github.com/eplus-aolalere) ([#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) +- [@ericapetersson](https://github.com/ericapetersson) ([#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) - [@ernestoongaro](https://github.com/ernestoongaro) ([#442](https://github.com/dbt-labs/dbt-bigquery/pull/442)) - [@halvorlu](https://github.com/halvorlu) ([#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) diff --git a/.changes/1.4.0/Dependencies-20221010-181501.yaml b/.changes/1.4.0/Dependencies-20221010-181501.yaml deleted file mode 100644 index 3fff057ad..000000000 --- a/.changes/1.4.0/Dependencies-20221010-181501.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Dependencies -body: Bump google-cloud-bigquery dependency to < 3.3.3 -time: 2022-10-10T18:15:01.113219+01:00 -custom: - Author: eplus-aolalere - Issue: "269" - PR: "332" diff --git a/.changes/1.4.0/Dependencies-20221213-135331.yaml b/.changes/1.4.0/Dependencies-20221213-135331.yaml deleted file mode 100644 index b26c5da1a..000000000 --- a/.changes/1.4.0/Dependencies-20221213-135331.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Dependencies -body: Add supoort for python 3.11 -time: 2022-12-13T13:53:31.182619-06:00 -custom: - Author: McKnight-42 - Issue: "407" - PR: "431" diff --git a/.changes/1.4.0/Features-20220807-164227.yaml b/.changes/1.4.0/Features-20220807-164227.yaml deleted file mode 100644 index 9352edc27..000000000 --- a/.changes/1.4.0/Features-20220807-164227.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Support for ingestion time partition table on BigQuery as incremental materialization -time: 2022-08-07T16:42:27.232818+02:00 -custom: - Author: Kayrnt - Issue: "75" - PR: "136" diff --git a/.changes/1.4.0/Features-20220823-085601.yaml b/.changes/1.4.0/Features-20220823-085601.yaml deleted file mode 100644 index d8bcd51bc..000000000 --- a/.changes/1.4.0/Features-20220823-085601.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: incremental predicates -time: 2022-08-23T08:56:01.043831-05:00 -custom: - Author: dave-connors-3 - Issue: "283" - PR: "284" diff --git a/.changes/1.4.0/Features-20220926-105700.yaml b/.changes/1.4.0/Features-20220926-105700.yaml deleted file mode 100644 index 61e0ac741..000000000 --- a/.changes/1.4.0/Features-20220926-105700.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Migrate dbt-utils current_timestamp macros into core + adapters -time: 2022-09-26T10:57:00.942765-07:00 -custom: - Author: colin-rogers-dbt - Issue: "324" - PR: "323" diff --git a/.changes/1.4.0/Features-20221020-223914.yaml b/.changes/1.4.0/Features-20221020-223914.yaml deleted file mode 100644 index 58b8e60a3..000000000 --- a/.changes/1.4.0/Features-20221020-223914.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: Features -body: Optimize insert_overwrite incremental strategy with WRITE_TRUNCATE / Partition - copy -time: 2022-10-20T22:39:14.091878+02:00 -custom: - Author: Kayrnt - Issue: "77" - PR: "167" diff --git a/.changes/1.4.0/Features-20221119-115200.yaml b/.changes/1.4.0/Features-20221119-115200.yaml deleted file mode 100644 index 04189c19c..000000000 --- a/.changes/1.4.0/Features-20221119-115200.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Support BigQuery 'labels' and 'hours_to_expiration' configs for seeds. -time: 2022-11-19T11:52:00.80272+11:00 -custom: - Author: darrylng - Issue: "125" - PR: "133" diff --git a/.changes/1.4.0/Features-20230109-105921.yaml b/.changes/1.4.0/Features-20230109-105921.yaml deleted file mode 100644 index 0eaec0dcb..000000000 --- a/.changes/1.4.0/Features-20230109-105921.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Fetch table description to `catalog.json`, so it can be shown in dbt docs -time: 2023-01-09T10:59:21.213259-06:00 -custom: - Author: McKnight-42, halvorlu - Issue: "173" - PR: "174" diff --git a/.changes/1.4.0/Fixes-20221019-115618.yaml b/.changes/1.4.0/Fixes-20221019-115618.yaml deleted file mode 100644 index 4aef9955a..000000000 --- a/.changes/1.4.0/Fixes-20221019-115618.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: use execution_project in python models -time: 2022-10-19T11:56:18.842401+02:00 -custom: - Author: ericapetersson - Issue: "355" - PR: "356" diff --git a/.changes/1.4.0/Fixes-20221026-192327.yaml b/.changes/1.4.0/Fixes-20221026-192327.yaml deleted file mode 100644 index 515095c98..000000000 --- a/.changes/1.4.0/Fixes-20221026-192327.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: fix args for console link logging -time: 2022-10-26T19:23:27.916326+02:00 -custom: - Author: Kayrnt - Issue: "362" - PR: "363" diff --git a/.changes/1.4.0/Fixes-20230109-105325.yaml b/.changes/1.4.0/Fixes-20230109-105325.yaml deleted file mode 100644 index 2a16883fc..000000000 --- a/.changes/1.4.0/Fixes-20230109-105325.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: stop eliminating trailing whitespace in incremental merge sql -time: 2023-01-09T10:53:25.837837-08:00 -custom: - Author: colin-rogers-dbt - Issue: "457" - PR: "458" diff --git a/.changes/1.4.0/Under the Hood-20220805-165120.yaml b/.changes/1.4.0/Under the Hood-20220805-165120.yaml deleted file mode 100644 index dacf18dfe..000000000 --- a/.changes/1.4.0/Under the Hood-20220805-165120.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: use gcp retry logic for new connections -time: 2022-08-05T16:51:20.590446-04:00 -custom: - Author: nathaniel-may - Issue: "229" - PR: "230" diff --git a/.changes/1.4.0/Under the Hood-20221207-103505.yaml b/.changes/1.4.0/Under the Hood-20221207-103505.yaml deleted file mode 100644 index ea1e3a62f..000000000 --- a/.changes/1.4.0/Under the Hood-20221207-103505.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: event logging changes to be in parity with dbt-core post pr#6291 -time: 2022-12-07T10:35:05.567885-06:00 -custom: - Author: McKnight-42 - Issue: "6139" - PR: "410" diff --git a/.changes/1.4.0/Under the Hood-20221207-151813.yaml b/.changes/1.4.0/Under the Hood-20221207-151813.yaml deleted file mode 100644 index 32084a6a7..000000000 --- a/.changes/1.4.0/Under the Hood-20221207-151813.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: Under the Hood -body: fix issue with tox 4.0.0 release which changes passenv syntax for space-separated - variables -time: 2022-12-07T15:18:13.996118-06:00 -custom: - Author: McKnight-42 - Issue: "411" - PR: "411" diff --git a/.changes/1.4.0/Under the Hood-20221219-212421.yaml b/.changes/1.4.0/Under the Hood-20221219-212421.yaml deleted file mode 100644 index c381a18c5..000000000 --- a/.changes/1.4.0/Under the Hood-20221219-212421.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: Truncates Job Labels to 63 Characters -time: 2022-12-19T21:24:21.304277Z -custom: - Author: ernestoongaro - Issue: "202" - PR: "442" diff --git a/.changes/1.4.0/Under the Hood-20221221-124711.yaml b/.changes/1.4.0/Under the Hood-20221221-124711.yaml deleted file mode 100644 index fcb83f9eb..000000000 --- a/.changes/1.4.0/Under the Hood-20221221-124711.yaml +++ /dev/null @@ -1,8 +0,0 @@ -kind: Under the Hood -body: Partition By unit test was failing, referenced the incorrect exception to be - raised -time: 2022-12-21T12:47:11.619388-05:00 -custom: - Author: mikealfare - Issue: "443" - PR: "445" diff --git a/.changes/1.4.0/Under the Hood-20230110-110016.yaml b/.changes/1.4.0/Under the Hood-20230110-110016.yaml deleted file mode 100644 index 3f428a801..000000000 --- a/.changes/1.4.0/Under the Hood-20230110-110016.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Under the Hood -body: Update exception names to match dbt-core -time: 2023-01-10T11:00:16.649793-06:00 -custom: - Author: emmyoop - Issue: "441" - PR: "460" diff --git a/CHANGELOG.md b/CHANGELOG.md index 588bb65f0..38df275f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,45 +4,38 @@ - 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.4.0-rc1 - January 11, 2023 +## dbt-bigquery 1.4.0 - January 25, 2023 ### Features +- Support for ingestion time partition table on BigQuery as incremental materialization ([#75](https://github.com/dbt-labs/dbt-bigquery/issues/75), [#136](https://github.com/dbt-labs/dbt-bigquery/pull/136)) - incremental predicates ([#283](https://github.com/dbt-labs/dbt-bigquery/issues/283), [#284](https://github.com/dbt-labs/dbt-bigquery/pull/284)) +- Migrate dbt-utils current_timestamp macros into core + adapters ([#324](https://github.com/dbt-labs/dbt-bigquery/issues/324), [#323](https://github.com/dbt-labs/dbt-bigquery/pull/323)) +- Optimize insert_overwrite incremental strategy with WRITE_TRUNCATE / Partition copy ([#77](https://github.com/dbt-labs/dbt-bigquery/issues/77), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167)) - Support BigQuery 'labels' and 'hours_to_expiration' configs for seeds. ([#125](https://github.com/dbt-labs/dbt-bigquery/issues/125), [#133](https://github.com/dbt-labs/dbt-bigquery/pull/133)) - Fetch table description to `catalog.json`, so it can be shown in dbt docs ([#173](https://github.com/dbt-labs/dbt-bigquery/issues/173), [#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) ### Fixes +- use execution_project in python models ([#355](https://github.com/dbt-labs/dbt-bigquery/issues/355), [#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) +- fix args for console link logging ([#362](https://github.com/dbt-labs/dbt-bigquery/issues/362), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) - stop eliminating trailing whitespace in incremental merge sql ([#457](https://github.com/dbt-labs/dbt-bigquery/issues/457), [#458](https://github.com/dbt-labs/dbt-bigquery/pull/458)) ### Under the Hood - use gcp retry logic for new connections ([#229](https://github.com/dbt-labs/dbt-bigquery/issues/229), [#230](https://github.com/dbt-labs/dbt-bigquery/pull/230)) +- event logging changes to be in parity with dbt-core post pr#6291 ([#6139](https://github.com/dbt-labs/dbt-bigquery/issues/6139), [#410](https://github.com/dbt-labs/dbt-bigquery/pull/410)) +- fix issue with tox 4.0.0 release which changes passenv syntax for space-separated variables ([#411](https://github.com/dbt-labs/dbt-bigquery/issues/411), [#411](https://github.com/dbt-labs/dbt-bigquery/pull/411)) - Truncates Job Labels to 63 Characters ([#202](https://github.com/dbt-labs/dbt-bigquery/issues/202), [#442](https://github.com/dbt-labs/dbt-bigquery/pull/442)) - Partition By unit test was failing, referenced the incorrect exception to be raised ([#443](https://github.com/dbt-labs/dbt-bigquery/issues/443), [#445](https://github.com/dbt-labs/dbt-bigquery/pull/445)) - Update exception names to match dbt-core ([#441](https://github.com/dbt-labs/dbt-bigquery/issues/441), [#460](https://github.com/dbt-labs/dbt-bigquery/pull/460)) ### Dependencies +- Bump google-cloud-bigquery dependency to < 3.3.3 ([#269](https://github.com/dbt-labs/dbt-bigquery/issues/269), [#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) - Add supoort for python 3.11 ([#407](https://github.com/dbt-labs/dbt-bigquery/issues/407), [#431](https://github.com/dbt-labs/dbt-bigquery/pull/431)) ### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#136](https://github.com/dbt-labs/dbt-bigquery/pull/136), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) - [@McKnight-42,](https://github.com/McKnight-42,) ([#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) - [@darrylng](https://github.com/darrylng) ([#133](https://github.com/dbt-labs/dbt-bigquery/pull/133)) - [@dave-connors-3](https://github.com/dave-connors-3) ([#284](https://github.com/dbt-labs/dbt-bigquery/pull/284)) -- [@ernestoongaro](https://github.com/ernestoongaro) ([#442](https://github.com/dbt-labs/dbt-bigquery/pull/442)) -- [@halvorlu](https://github.com/halvorlu) ([#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) -## dbt-bigquery 1.4.0-b1 - December 15, 2022 -### Features -- Support for ingestion time partition table on BigQuery as incremental materialization ([#75](https://github.com/dbt-labs/dbt-bigquery/issues/75), [#136](https://github.com/dbt-labs/dbt-bigquery/pull/136)) -- Migrate dbt-utils current_timestamp macros into core + adapters ([#324](https://github.com/dbt-labs/dbt-bigquery/issues/324), [#323](https://github.com/dbt-labs/dbt-bigquery/pull/323)) -- Optimize insert_overwrite incremental strategy with WRITE_TRUNCATE / Partition copy ([#77](https://github.com/dbt-labs/dbt-bigquery/issues/77), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167)) -### Fixes -- use execution_project in python models ([#355](https://github.com/dbt-labs/dbt-bigquery/issues/355), [#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) -- fix args for console link logging ([#362](https://github.com/dbt-labs/dbt-bigquery/issues/362), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) -### Under the Hood -- event logging changes to be in parity with dbt-core post pr#6291 ([#6139](https://github.com/dbt-labs/dbt-bigquery/issues/6139), [#410](https://github.com/dbt-labs/dbt-bigquery/pull/410)) -- fix issue with tox 4.0.0 release which changes passenv syntax for space-separated variables ([#411](https://github.com/dbt-labs/dbt-bigquery/issues/411), [#411](https://github.com/dbt-labs/dbt-bigquery/pull/411)) -### Dependencies -- Bump google-cloud-bigquery dependency to < 3.3.3 ([#269](https://github.com/dbt-labs/dbt-bigquery/issues/269), [#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) - -### Contributors -- [@Kayrnt](https://github.com/Kayrnt) ([#136](https://github.com/dbt-labs/dbt-bigquery/pull/136), [#167](https://github.com/dbt-labs/dbt-bigquery/pull/167), [#363](https://github.com/dbt-labs/dbt-bigquery/pull/363)) - [@eplus-aolalere](https://github.com/eplus-aolalere) ([#332](https://github.com/dbt-labs/dbt-bigquery/pull/332)) - [@ericapetersson](https://github.com/ericapetersson) ([#356](https://github.com/dbt-labs/dbt-bigquery/pull/356)) +- [@ernestoongaro](https://github.com/ernestoongaro) ([#442](https://github.com/dbt-labs/dbt-bigquery/pull/442)) +- [@halvorlu](https://github.com/halvorlu) ([#174](https://github.com/dbt-labs/dbt-bigquery/pull/174)) ## Previous Releases For information on prior major and minor releases, see their changelogs: - [1.3](https://github.com/dbt-labs/dbt-bigquery/blob/1.3.latest/CHANGELOG.md) diff --git a/dbt/adapters/bigquery/__version__.py b/dbt/adapters/bigquery/__version__.py index 9ea893aec..d619c757e 100644 --- a/dbt/adapters/bigquery/__version__.py +++ b/dbt/adapters/bigquery/__version__.py @@ -1 +1 @@ -version = "1.4.0rc1" +version = "1.4.0" diff --git a/setup.py b/setup.py index 53919fd89..cf251bb1c 100644 --- a/setup.py +++ b/setup.py @@ -57,7 +57,7 @@ def _dbt_core_version(plugin_version: str) -> str: package_name = "dbt-bigquery" -package_version = "1.4.0rc1" +package_version = "1.4.0" dbt_core_version = _dbt_core_version(_dbt_bigquery_version()) description = """The BigQuery adapter plugin for dbt"""