Skip to content

Commit

Permalink
Merge pull request #51 from calogica/patch/dbt-1-0
Browse files Browse the repository at this point in the history
Patch release to support dbt 0.1.x
  • Loading branch information
clausherther authored Dec 5, 2021
2 parents 4668505 + a9285b0 commit c9bad71
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

target/
dbt_modules/
dbt_packages/
logs/
.python-version
.python-version
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# dbt-date v0.4.2
## Under the hood
* Patch: adds support for dbt 1.x

# dbt-date v0.4.1

## Under the hood
Expand Down
6 changes: 3 additions & 3 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: 'dbt_date'
version: '0.2'
version: '0.4'

config-version: 2

target-path: "target"
clean-targets: ["target", "dbt_modules"]
clean-targets: ["target", "dbt_modules", "dbt_packages"]
macro-paths: ["macros"]
log-path: "logs"

require-dbt-version: [">=0.20.0", "<0.22.0"]
require-dbt-version: [">=0.20.0", "<1.1.0"]
profile: integration_tests

quoting:
Expand Down
6 changes: 1 addition & 5 deletions integration_tests/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ version: "1.0"

profile: "integration_tests"

# require-dbt-version: inherit this from dbt-utils

config-version: 2

source-paths: ["models"]
Expand All @@ -13,9 +11,7 @@ data-paths: ["data"]
macro-paths: ["macros"]

target-path: "target"
clean-targets:
- "target"
- "dbt_modules"
clean-targets: ["target", "dbt_modules", "dbt_packages"]

dispatch:
- macro_namespace: dbt_date
Expand Down

0 comments on commit c9bad71

Please sign in to comment.