diff --git a/CHANGELOG.md b/CHANGELOG.md index bb315169..7a8b646a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# dbt_stripe_source v0.9.2 +PR [#64](https://github.com/fivetran/dbt_stripe_source/pull/64) includes the following updates: +## Bug Fixes +- The `stg_stripe__fee` uniqueness test has been updated to also consider the `index` when determining the unique combination of columns. As there may be many indexes to a single fee, the uniqueness test has been updated to account for this scenario. + +## Contributors +- [@jmussitsch](https://github.com/jmussitsch) ([#64](https://github.com/fivetran/dbt_stripe_source/pull/64)) + # dbt_stripe_source v0.9.1 PR [#61](https://github.com/fivetran/dbt_stripe_source/pull/61) includes the following updates: ## Feature Updates diff --git a/dbt_project.yml b/dbt_project.yml index ec26797c..05ae6a52 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,6 +1,6 @@ config-version: 2 name: 'stripe_source' -version: '0.9.1' +version: '0.9.2' require-dbt-version: [">=1.3.0", "<2.0.0"] models: diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 5b6bf1c3..72fa4e67 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,7 +1,7 @@ config-version: 2 name: 'stripe_source_integration_tests' -version: '0.9.1' +version: '0.9.2' profile: 'integration_tests'