diff --git a/.changes/unreleased/Features-20241117-135401.yaml b/.changes/unreleased/Features-20241117-135401.yaml deleted file mode 100644 index c97b164..0000000 --- a/.changes/unreleased/Features-20241117-135401.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add BI engine usage monitoring -time: 2024-11-17T13:54:01.975026+01:00 -custom: - Author: Kayrnt - Issue: "58" diff --git a/.changes/v0.13.0.md b/.changes/v0.13.0.md new file mode 100644 index 0000000..cde26d3 --- /dev/null +++ b/.changes/v0.13.0.md @@ -0,0 +1,10 @@ +## dbt-bigquery-monitoring v0.13.0 - November 17, 2024 + +### Features + + + - Add BI engine usage monitoring ([#58](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/58)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#58](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/58)) + diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a44ab0..c84495d 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.13.0 - November 17, 2024 + +### Features + + + - Add BI engine usage monitoring ([#58](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/58)) + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) ([#58](https://github.com/bqbooster/dbt-bigquery-monitoring/issues/58)) + + ## dbt-bigquery-monitoring v0.12.0 - November 16, 2024 ### Features diff --git a/README.md b/README.md index e2527ae..d39040d 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ Add the following to your `packages.yml` file: ```yml {"id":"01J6QQ78T6KQCXF8VPNH8BXBYM"} packages: - package: bqbooster/dbt_bigquery_monitoring - version: 0.12.0 + version: 0.13.0 ``` ### Set up an output dataset diff --git a/dbt_project.yml b/dbt_project.yml index 9fb1d10..b9e3667 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.12.0" +version: "0.13.0" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index 262977e..c199b78 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.12.0", + dbt_bigquery_monitoring_version="0.13.0", dbt_version=dbt_version, project_name=project_name, target_name=target.name,