From ece3d0105358f0c366a75ed894c4c62b58ee78d7 Mon Sep 17 00:00:00 2001 From: Elliot Partridge <followingell@googlemail.com> Date: Fri, 14 Oct 2022 00:08:07 +0200 Subject: [PATCH] Add support for dbt==1.3 --- CHANGELOG.md | 2 ++ README.md | 2 +- dbt_coverage/__init__.py | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1611032..be73d28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added +- Support for `dbt==1.3` ## [0.2.2] - 2022-07-29 ### Added diff --git a/README.md b/README.md index 3f6e82c..1d6191b 100644 --- a/README.md +++ b/README.md @@ -154,7 +154,7 @@ the support matrix. |-------------|----------------| | <0.20 | not tested | | 0.20 - 0.21 | 0.1 | -| 1.0 - 1.2 | 0.2 | +| 1.0 - 1.3 | 0.2 | ## Related packages diff --git a/dbt_coverage/__init__.py b/dbt_coverage/__init__.py index 254753a..a3a9987 100644 --- a/dbt_coverage/__init__.py +++ b/dbt_coverage/__init__.py @@ -16,6 +16,7 @@ 'https://schemas.getdbt.com/dbt/manifest/v4.json', 'https://schemas.getdbt.com/dbt/manifest/v5.json', 'https://schemas.getdbt.com/dbt/manifest/v6.json', + 'https://schemas.getdbt.com/dbt/manifest/v7.json', ] app = typer.Typer(help="Compute coverage of dbt-managed data warehouses.")