From 2028910ff2e833da05d73480a0dfbfecebfd1a58 Mon Sep 17 00:00:00 2001 From: Claus Herther Date: Wed, 6 Oct 2021 08:31:33 -0700 Subject: [PATCH] Add support for dbt 0.21 (#116) --- CHANGELOG.md | 2 ++ dbt_project.yml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cfc24d2..7a2a37a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ * Fixes incompatibility on Snowflake with use of `row_number()` without `order by` in `expect_table_columns_to_match_ordered_list`([#112](https://github.com/calogica/dbt-expectations/pull/112)) ## Features + ## Under the hood +* Supports dbt 0.21.x # dbt-expectations v0.4.2 diff --git a/dbt_project.yml b/dbt_project.yml index 125f5be..0b16521 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -5,7 +5,7 @@ name: 'dbt_expectations' version: '0.4.0' -require-dbt-version: [">=0.20.0", "<0.21.0"] +require-dbt-version: [">=0.20.0", "<0.22.0"] config-version: 2 target-path: "target"