From 1ae9f36f608ce942664c352fbbea9b4fae2f9a5f Mon Sep 17 00:00:00 2001 From: Guilherme Kowalczuk Date: Fri, 13 May 2022 17:21:28 -0300 Subject: [PATCH 1/3] Changed source-path and data-paths config --- dbt_project.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dbt_project.yml b/dbt_project.yml index e33c20d..956aac2 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -13,10 +13,10 @@ profile: 'dbtplyr' # These configurations specify where dbt should look for different types of files. # The `source-paths` config, for example, states that models in this project can be # found in the "models/" directory. You probably won't need to change these! -source-paths: ["models"] +model-paths: ["models"] analysis-paths: ["analysis"] test-paths: ["tests"] -data-paths: ["data"] +seed-paths: ["data"] macro-paths: ["macros"] snapshot-paths: ["snapshots"] From c5e6c7c9a88b7a01601218058bea6067db3ca48d Mon Sep 17 00:00:00 2001 From: Emily Riederer Date: Fri, 13 May 2022 17:42:52 -0500 Subject: [PATCH 2/3] Bump version number --- dbt_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbt_project.yml b/dbt_project.yml index 956aac2..37f9639 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -3,7 +3,7 @@ # and underscores. A good package name should reflect your organization's # name or the intended use of these models name: 'dbtplyr' -version: '0.3.0' +version: '0.3.1' config-version: 2 require-dbt-version: ">=1.0.0" From 8903217fe3b1a258e8f51d5fcd3b90c1c4e4f323 Mon Sep 17 00:00:00 2001 From: Emily Riederer Date: Fri, 13 May 2022 17:46:41 -0500 Subject: [PATCH 3/3] update YAML keys in test suite per 1.0 spec --- integration_tests/dbt_project.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 69e6d11..9a92757 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -7,10 +7,10 @@ profile: 'dbtplyr' config-version: 2 -source-paths: ["models"] +model-paths: ["models"] analysis-paths: ["analysis"] test-paths: ["tests"] -data-paths: ["data"] +seed-paths: ["data"] macro-paths: ["macros"] target-path: "target" # directory which will store compiled SQL files @@ -19,4 +19,4 @@ clean-targets: # directories to be removed by `dbt clean` - "dbt_modules" seeds: - +quote_columns: true \ No newline at end of file + +quote_columns: true