Skip to content

Commit 86e0426

Browse files
committed
Changelog, bump utils dependency, bump core version
1 parent 157953a commit 86e0426

10 files changed

+10
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
# audit_helper 0.5.0
2+
This version brings full compatibility with dbt-core 1.0. It requires any version (minor and patch) of v1, which means far less need for compatibility releases in the future.
3+
14
# audit_helper 0.4.1
25
🚨 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.

dbt_project.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: 'audit_helper'
22
version: '0.4.0'
33
config-version: 2
44

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

77
target-path: "target"
8-
clean-targets: ["target", "dbt_modules"]
8+
clean-targets: ["target", "dbt_packages"]
99
macro-paths: ["macros"]
1010
log-path: "logs"

integration_tests/dbt_project.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ config-version: 2
44

55
profile: 'integration_tests'
66

7-
source-paths: ["models"]
8-
analysis-paths: ["analysis"]
7+
model-paths: ["models"]
8+
analysis-paths: ["analyses"]
99
test-paths: ["tests"]
10-
data-paths: ["data"]
10+
seed-paths: ["seeds"]
1111
macro-paths: ["macros"]
1212

1313
target-path: "target" # directory which will store compiled SQL files
1414
clean-targets: # directories to be removed by `dbt clean`
1515
- "target"
16-
- "dbt_modules"
16+
- "dbt_packages"
1717

1818
seeds:
1919
+quote_columns: false

packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
packages:
22
- package: dbt-labs/dbt_utils
3-
version: [">=0.7.0", "<0.8.0"]
3+
version: [">=0.8.0", "<0.9.0"]

0 commit comments

Comments
 (0)