From 4797bf1a50afaa8f9262d3c3d508166e2c7c1c1f Mon Sep 17 00:00:00 2001 From: Joel Labes Date: Sat, 4 Dec 2021 12:40:52 +1300 Subject: [PATCH] Change python version, add upper dbt version bound, add changelog --- CHANGELOG.md | 2 ++ circle.yml | 2 +- dbt_project.yml | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..67ff3ff --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,2 @@ +# redshift v0.5.1 +🚨 This is a compatibility release in preparation for `dbt-core` v1.0.0 (🎉). Projects using this version with `dbt-core` v1.0.x can expect to see a deprecation warning. This will be resolved in the next minor release. \ No newline at end of file diff --git a/circle.yml b/circle.yml index bc180a2..556c031 100644 --- a/circle.yml +++ b/circle.yml @@ -4,7 +4,7 @@ machine: python: version: - 3.6.1 + 3.9.9 dependencies: pre: diff --git a/dbt_project.yml b/dbt_project.yml index 1a92e25..891602e 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -2,7 +2,7 @@ name: 'redshift' version: '0.5.0' config-version: 2 -require-dbt-version: [">=0.17.0"] +require-dbt-version: [">=0.17.0", "<1.1.0"] source-paths: ["models"] macro-paths: ["macros"]