Skip to content

Commit

Permalink
Merge pull request #47 from dbt-labs/v1-full-compatibility
Browse files Browse the repository at this point in the history
v1 breaking changes
  • Loading branch information
joellabes committed Dec 7, 2021
2 parents 34fed47 + 243c22e commit 20f2f8d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,11 @@
# facebook-ads v0.8.0

This release supports any version (minor and patch) of v1, which means far less need for compatibility releases in the future.

## Under the hood
- Change `require-dbt-version` to `[">=1.0.0", "<2.0.0"]`
- Bump dbt-utils dependency
- Replace `source-paths` and `data-paths` with `model-paths` and `seed-paths` respectively

# facebook-ads v0.7.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.
10 changes: 5 additions & 5 deletions dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
name: 'facebook_ads'
version: '0.7.1'
version: '0.8.0'
config-version: 2

require-dbt-version: [">=0.20.0", "<1.1.0"]
require-dbt-version: [">=1.0.0", "<2.0.0"]

source-paths: ["models"] # paths with source code to compile
analysis-paths: ["analysis"] # path with analysis files which are compiled, but not run
model-paths: ["models"] # paths with source code to compile
analysis-paths: ["analyses"] # path with analysis files which are compiled, but not run
target-path: "target" # path for compiled code
clean-targets: ["target"] # directories removed by the clean task
test-paths: ["test"] # where to store test results
data-paths: ["data"] # load CSVs from this directory with `dbt seed`
seed-paths: ["seeds"] # load CSVs from this directory with `dbt seed`

vars:

Expand Down
2 changes: 1 addition & 1 deletion packages.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
packages:
- package: dbt-labs/dbt_utils
version: [">=0.7.0", "<0.8.0"]
version: [">=0.8.0", "<0.9.0"]

0 comments on commit 20f2f8d

Please sign in to comment.