Skip to content

Commit

Permalink
Merge pull request #27 from morsapaes/release-v0.6.0
Browse files Browse the repository at this point in the history
Release v0.6.0
  • Loading branch information
morsapaes authored Nov 24, 2022
2 parents 73c71fd + 0ae342f commit 817e068
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# materialize-dbt-utils Changelog

## Unreleased
## 0.6.0 - 2022-11-23

* Bump the minimum supported version of `dbt-materialize` to v1.3.0.

Expand Down
10 changes: 5 additions & 5 deletions MAINTAINER.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

## Bumping dependency versions

To update the tested version of dbt-materialize, bump the version specification
To update the tested version of `dbt-materialize`, bump the version specification
in the `pip install` invocation in [.github/workflows/main.yml].

To update the tested version of `materialized`, bump the version specification
in the `services` specification in [.github/workflows/main.yml]. We explicitly
avoid depending on `latest` so that CI is deterministic.

To update the embedded dbt-utils:
To update the embedded `dbt-utils`:

```shell
cd dbt-utils
git checkout vVERSION
git pull
git fetch origin
git checkout VERSION
cd ..
# Update dbt-utils version in README.md
# Update compatibility matrix for new macros/schema-tests in README.md.
git commit -am 'Update dbt-utils'
git commit -am 'Bump dbt-utils to VERSION'
```

## Cutting a new release
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ root dbt project:
```
packages:
- package: dbt-labs/dbt_utils
version: 0.9.2
version: 0.9.5
- package: MaterializeInc/materialize_dbt_utils
version: 0.5.0
version: 0.6.0
```

Then set a `dispatch` config in your `dbt_project.yml`:
Expand Down
2 changes: 1 addition & 1 deletion dbt-utils
Submodule dbt-utils updated 165 files
2 changes: 1 addition & 1 deletion dbt_project.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'materialize_dbt_utils'
version: '0.5.0'
version: '0.6.0'
config-version: 2

require-dbt-version: [">=1.3.0", "<2.0.0"]
12 changes: 11 additions & 1 deletion integration_tests/dbt_utils/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,20 @@ models:
# Tested by test_date_spine_override.
test_date_spine:
+enabled: false
schema_tests:
generic_tests:
# Tested by test_recency_override.
test_recency:
+enabled: false
cross_db_utils:
# Materialize does not support the bool_or function
test_bool_or:
+enabled: false
# Materialize does not support the array_append function
test_array_append:
+enabled: false
# TODO(morsapaes): Enable once materialize #15863 lands (with an override, not error)
test_listagg:
+enabled: false

seeds:
dbt_utils_integration_tests:
Expand Down

0 comments on commit 817e068

Please sign in to comment.