From 63e7e288993f12490c39700accb811df9dff43b1 Mon Sep 17 00:00:00 2001 From: Niall Woodward Date: Fri, 26 May 2023 11:59:29 +0100 Subject: [PATCH] Release 2.1.0 --- .changes/2.1.0.md | 9 +++++++++ .changes/unreleased/Features-20230525-221550.yaml | 6 ------ CHANGELOG.md | 10 ++++++++++ README.md | 6 +++--- dbt_project.yml | 2 +- 5 files changed, 23 insertions(+), 10 deletions(-) create mode 100644 .changes/2.1.0.md delete mode 100644 .changes/unreleased/Features-20230525-221550.yaml diff --git a/.changes/2.1.0.md b/.changes/2.1.0.md new file mode 100644 index 0000000..0357998 --- /dev/null +++ b/.changes/2.1.0.md @@ -0,0 +1,9 @@ +## dbt-snowflake-query-tags 2.1.0 - May 26, 2023 + +### Features + +- Add dbt meta to comment metadata ([#13](https://github.com/get-select/dbt-snowflake-query-tags/pull/13)) + +### Contributors +- [@pratik60](https://github.com/pratik60) (Features) + diff --git a/.changes/unreleased/Features-20230525-221550.yaml b/.changes/unreleased/Features-20230525-221550.yaml deleted file mode 100644 index 01b8f57..0000000 --- a/.changes/unreleased/Features-20230525-221550.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add dbt meta to comment metadata -time: 2023-05-25T22:15:50.19853+01:00 -custom: - Author: pratik60 - PR: "13" diff --git a/CHANGELOG.md b/CHANGELOG.md index afaaaf5..248ba46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ 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-snowflake-query-tags 2.1.0 - May 26, 2023 + +### Features + +- Add dbt meta to comment metadata ([#13](https://github.com/get-select/dbt-snowflake-query-tags/pull/13)) + +### Contributors +- [@pratik60](https://github.com/pratik60) (Features) + + ## dbt-snowflake-query-tags 2.0.2 - May 12, 2023 ### Features diff --git a/README.md b/README.md index 2c8dc42..8cfe649 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An example query comment contains: ```json { - "dbt_snowflake_query_tags_version": "2.0.2", + "dbt_snowflake_query_tags_version": "2.1.0", "app": "dbt", "dbt_version": "1.4.0", "project_name": "my_project", @@ -43,7 +43,7 @@ Query tags are used solely for attaching the `is_incremental` flag, as this isn' ```json { - "dbt_snowflake_query_tags_version": "2.0.1", + "dbt_snowflake_query_tags_version": "2.1.0", "app": "dbt", "is_incremental": true } @@ -56,7 +56,7 @@ Query tags are used solely for attaching the `is_incremental` flag, as this isn' ```yaml packages: - package: get-select/dbt_snowflake_query_tags - version: 2.0.0 + version: 2.1.0 ``` 2. Adding the query tags diff --git a/dbt_project.yml b/dbt_project.yml index 8f4e2b5..d145659 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,3 +1,3 @@ name: 'dbt_snowflake_query_tags' -version: '2.0.2' +version: '2.1.0' config-version: 2