diff --git a/.changes/unreleased/Features-20241203-023248.yaml b/.changes/unreleased/Features-20241203-023248.yaml deleted file mode 100644 index 5f0ec0e..0000000 --- a/.changes/unreleased/Features-20241203-023248.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add client type support to breakdown by type of workload -time: 2024-12-03T02:32:48.336083+01:00 -custom: - Author: Kayrnt - Issue: "68" diff --git a/.changes/v0.15.0.md b/.changes/v0.15.0.md new file mode 100644 index 0000000..6cf038e --- /dev/null +++ b/.changes/v0.15.0.md @@ -0,0 +1,10 @@ +## dbt-bigquery-monitoring v0.15.0 - December 03, 2024 + +### Features + + + - Add client type support to breakdown by type of workload ([#68](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/68)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#68](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/68)) + diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f2445..53349ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## dbt-bigquery-monitoring v0.15.0 - December 03, 2024 + +### Features + + + - Add client type support to breakdown by type of workload ([#68](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/68)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#68](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/68)) + + ## dbt-bigquery-monitoring v0.14.3 - November 27, 2024 ### Fixes diff --git a/dbt_project.yml b/dbt_project.yml index 5c4494e..61cc5a6 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.14.3" +version: "0.15.0" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/docs/installation.md b/docs/installation.md index dfd79e4..c5ee75a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -12,7 +12,7 @@ Add the following to your `packages.yml` file: ```yml packages: - package: bqbooster/dbt_bigquery_monitoring - version: 0.14.3 + version: 0.15.0 ``` ## Set up an output dataset diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index d64f26a..5cef96f 100644 --- a/macros/set_query_comment.sql +++ b/macros/set_query_comment.sql @@ -6,7 +6,7 @@ {%- set comment_dict = {} -%} {%- do comment_dict.update( app='dbt', - dbt_bigquery_monitoring_version="0.14.3", + dbt_bigquery_monitoring_version="0.15.0", dbt_version=dbt_version, project_name=project_name, target_name=target.name,