diff --git a/README.md b/README.md index 34ab40ef..e91b9105 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +[![Apache License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) ![dbt logo and version](https://img.shields.io/static/v1?logo=dbt&label=dbt-version&message=0.20.x&color=orange) # QuickBooks ([docs](https://dbt-quickbooks.netlify.app/)) This package models QuickBooks data from [Fivetran's connector](https://fivetran.com/docs/applications/quickbooks). It uses data in the format described by [this ERD](https://fivetran.com/docs/applications/quickbooks#schemainformation). @@ -26,15 +27,16 @@ This package contains transformation models designed to work simultaneously with | [quickbooks__expenses_sales_enhanced](https://github.com/fivetran/dbt_quickbooks/blob/master/models/quickbooks__expenses_sales.sql) | Table providing enhanced customer, vendor, and account details for each expense and sale transaction. | ## Installation Instructions +`dbt_quickbooks` currently supports `dbt 0.20.x`. Check [dbt Hub](https://hub.getdbt.com/) for the latest installation instructions, or [read the dbt docs](https://docs.getdbt.com/docs/package-management) for more information on installing packages. -```yml -# packages.yml +Include in your `packages.yml` +```yaml packages: - package: fivetran/quickbooks - version: [">=0.2.0", "<0.3.0"] + version: [">=0.3.0", "<0.4.0"] ``` ## Configuration @@ -107,12 +109,11 @@ Please create issues or open PRs against `master`. Check out [this post](https:/ This package has been tested on BigQuery, Snowflake, Redshift, and Postgres. ## Resources: - - Provide [feedback](https://www.surveymonkey.com/r/DQ7K7WW) on our existing dbt packages or what you'd like to see next -- Have questions or feedback, or need help? Book a time during our office hours [here](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or shoot us an email at [solutions@fivetran.com](solutions@fivetran.com) +- Have questions or feedback, or need help? Book a time during our office hours [here](https://calendly.com/fivetran-solutions-team/fivetran-solutions-team-office-hours) or shoot us an email at solutions@fivetran.com. - Find all of Fivetran's pre-built dbt packages in our [dbt hub](https://hub.getdbt.com/fivetran/) -- Learn how to orchestrate dbt transformations with Fivetran [here](https://fivetran.com/docs/transformations/dbt) -- Learn more about Fivetran in general [in our docs](https://fivetran.com/docs) +- Learn how to orchestrate dbt transformations with Fivetran [here](https://fivetran.com/docs/transformations/dbt). +- Learn more about Fivetran overall [in our docs](https://fivetran.com/docs) - Check out [Fivetran's blog](https://fivetran.com/blog) - Learn more about dbt [in the dbt docs](https://docs.getdbt.com/docs/introduction) - Check out [Discourse](https://discourse.getdbt.com/) for commonly asked questions and answers diff --git a/dbt_project.yml b/dbt_project.yml index b09b8c19..5617a3a4 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -1,9 +1,9 @@ config-version: 2 name: 'quickbooks' -version: '0.2.4' +version: '0.3.0' -require-dbt-version: [">=0.18.0", "<0.20.0"] +require-dbt-version: ">=0.20.0" models: quickbooks: diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index e67876fe..77499735 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -1,5 +1,5 @@ name: 'quickbooks_integration_tests' -version: '0.2.4' +version: '0.3.0' profile: 'integration_tests' config-version: 2 diff --git a/integration_tests/requirements.txt b/integration_tests/requirements.txt index 38e8ae6c..1b85aa4f 100644 --- a/integration_tests/requirements.txt +++ b/integration_tests/requirements.txt @@ -1 +1 @@ -dbt==0.19.0 \ No newline at end of file +dbt~=0.20.0 \ No newline at end of file diff --git a/packages.yml b/packages.yml index ae9ccb44..e58b3d92 100644 --- a/packages.yml +++ b/packages.yml @@ -1,3 +1,3 @@ packages: - package: fivetran/quickbooks_source - version: [">=0.2.0","<0.3.0"] + version: [">=0.3.0","<0.4.0"] \ No newline at end of file