diff --git a/CHANGELOG.md b/CHANGELOG.md index 7957361..9465a85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Added +- Support for `dbt==1.6` - Integration tests ## [0.3.4] - 2023-05-17 diff --git a/README.md b/README.md index bd139d3..a813622 100644 --- a/README.md +++ b/README.md @@ -227,7 +227,7 @@ the support matrix. |-------------|----------------| | <0.20 | not tested | | 0.20 - 0.21 | 0.1 | -| 1.0 - 1.5 | 0.2, 0.3 | +| 1.0 - 1.6 | 0.2, 0.3 | ## Related packages diff --git a/dbt_coverage/__init__.py b/dbt_coverage/__init__.py index 2822c92..da0b2b0 100644 --- a/dbt_coverage/__init__.py +++ b/dbt_coverage/__init__.py @@ -18,6 +18,7 @@ "https://schemas.getdbt.com/dbt/manifest/v7.json", "https://schemas.getdbt.com/dbt/manifest/v8.json", "https://schemas.getdbt.com/dbt/manifest/v9.json", + "https://schemas.getdbt.com/dbt/manifest/v10.json", ] app = typer.Typer(help="Compute coverage of dbt-managed data warehouses.") diff --git a/tox.ini b/tox.ini index 52423d2..66b2a62 100644 --- a/tox.ini +++ b/tox.ini @@ -8,6 +8,7 @@ env_list = dbt13 dbt14 dbt15 + dbt16 [testenv] description = run integration tests @@ -62,3 +63,10 @@ deps = {[testenv]deps} dbt-core~=1.5.0 dbt-postgres~=1.5.0 + +[testenv:dbt16] +description = run with dbt==1.6 +deps = + {[testenv]deps} + dbt-core~=1.6.0 + dbt-postgres~=1.6.0