From 6e63f4a1e127a0c9fe635ae2316a3e51b804c36f Mon Sep 17 00:00:00 2001 From: Kayrnt Date: Mon, 13 Jan 2025 00:13:35 +0000 Subject: [PATCH] Release v0.18.0 --- .changes/unreleased/Features-20250111-142613.yaml | 6 ------ .changes/v0.18.0.md | 10 ++++++++++ CHANGELOG.md | 11 +++++++++++ dbt_project.yml | 2 +- docs/installation.md | 2 +- macros/set_query_comment.sql | 2 +- 6 files changed, 24 insertions(+), 9 deletions(-) delete mode 100644 .changes/unreleased/Features-20250111-142613.yaml create mode 100644 .changes/v0.18.0.md diff --git a/.changes/unreleased/Features-20250111-142613.yaml b/.changes/unreleased/Features-20250111-142613.yaml deleted file mode 100644 index d3c2790..0000000 --- a/.changes/unreleased/Features-20250111-142613.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Improve the scalability of the project approach by factoring them into a table -time: 2025-01-11T14:26:13.652366+01:00 -custom: - Author: Kayrnt - Issue: "" diff --git a/.changes/v0.18.0.md b/.changes/v0.18.0.md new file mode 100644 index 0000000..261ddc3 --- /dev/null +++ b/.changes/v0.18.0.md @@ -0,0 +1,10 @@ +## dbt-bigquery-monitoring v0.18.0 - January 13, 2025 + +### Features + + + - Improve the scalability of the project approach by factoring them into a table + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + diff --git a/CHANGELOG.md b/CHANGELOG.md index 12248d4..78843b9 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.18.0 - January 13, 2025 + +### Features + + + - Improve the scalability of the project approach by factoring them into a table + +### Contributors +- [@Kayrnt](https://github.com/Kayrnt) + + ## dbt-bigquery-monitoring v0.17.2 - January 06, 2025 ### Fixes diff --git a/dbt_project.yml b/dbt_project.yml index 92afea8..8e59d93 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,5 +1,5 @@ name: "dbt_bigquery_monitoring" -version: "0.17.2" +version: "0.18.0" require-dbt-version: [">=1.3.0", "<2.0.0"] config-version: 2 diff --git a/docs/installation.md b/docs/installation.md index cd63393..9f1df49 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.17.2 + version: 0.18.0 ``` ## Set up an output dataset diff --git a/macros/set_query_comment.sql b/macros/set_query_comment.sql index ff328c8..d1d3b5a 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.17.2", + dbt_bigquery_monitoring_version="0.18.0", dbt_version=dbt_version | default(''), project_name=project_name | default(''), target_name=target.name | default(''),