diff --git a/.changes/2.2.0.md b/.changes/2.2.0.md new file mode 100644 index 0000000..542b92c --- /dev/null +++ b/.changes/2.2.0.md @@ -0,0 +1,7 @@ +## dbt-snowflake-query-tags 2.2.0 - June 23, 2023 + +### Features + +- Add full_refresh, which and invocation_command to comment ([#15](https://github.com/get-select/dbt-snowflake-query-tags/pull/15)) + + diff --git a/.changes/unreleased/Features-20230623-141155.yaml b/.changes/unreleased/Features-20230623-141155.yaml deleted file mode 100644 index ad34fe3..0000000 --- a/.changes/unreleased/Features-20230623-141155.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add full_refresh, which and invocation_command to comment -time: 2023-06-23T14:11:55.151949-07:00 -custom: - Author: NiallRees - PR: "15" diff --git a/CHANGELOG.md b/CHANGELOG.md index 248ba46..f3ca054 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ 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.2.0 - June 23, 2023 + +### Features + +- Add full_refresh, which and invocation_command to comment ([#15](https://github.com/get-select/dbt-snowflake-query-tags/pull/15)) + + + ## dbt-snowflake-query-tags 2.1.0 - May 26, 2023 ### Features diff --git a/README.md b/README.md index 8cfe649..6ed4688 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An example query comment contains: ```json { - "dbt_snowflake_query_tags_version": "2.1.0", + "dbt_snowflake_query_tags_version": "2.2.0", "app": "dbt", "dbt_version": "1.4.0", "project_name": "my_project", @@ -29,6 +29,8 @@ An example query comment contains: "node_tags": ["tag_1", "tag_2"], "node_meta": {"owner": "@alice", "model_maturity": "in dev"}, "materialized": "incremental", + "full_refresh": false, + "which": "run" -- dbt Cloud only "dbt_cloud_project_id": "146126", diff --git a/dbt_project.yml b/dbt_project.yml index d145659..47b5894 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,3 +1,3 @@ name: 'dbt_snowflake_query_tags' -version: '2.1.0' +version: '2.2.0' config-version: 2