diff --git a/.circleci/config.yml b/.circleci/config.yml index bcd6ee4e..ede02ac6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: integration-redshift: docker: - - image: circleci/python:3.6.13-stretch + - image: cimg/python:3.9.9 steps: - checkout - run: @@ -19,7 +19,7 @@ jobs: integration-snowflake: docker: - - image: circleci/python:3.6.13-stretch + - image: cimg/python:3.9.9 steps: - checkout - run: @@ -32,7 +32,7 @@ jobs: environment: BIGQUERY_SERVICE_KEY_PATH: "/home/circleci/bigquery-service-key.json" docker: - - image: circleci/python:3.6.13-stretch + - image: cimg/python:3.9.9 steps: - checkout - run: diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..bac2ea5f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,9 @@ +# dbt-external-tables v0.7.2 +🚨 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. + +### Fixes +- (BigQuery) Fix `create external tables` with multiple partitions, by including missing comma ([#114](https://github.com/dbt-labs/dbt-external-tables/pull/114)) +- (Snowflake) Fix `auto_refresh` when not specified `False` ([#117](https://github.com/dbt-labs/dbt-external-tables/pull/117)) + +### Contributors +- [@stumelius](https://github.com/stumelius) ([#114](https://github.com/dbt-labs/dbt-external-tables/pull/114)) diff --git a/dbt_project.yml b/dbt_project.yml index 44e0151a..678215d9 100644 --- a/dbt_project.yml +++ b/dbt_project.yml @@ -3,7 +3,7 @@ version: '0.7.0' config-version: 2 -require-dbt-version: ">=0.20.0" +require-dbt-version: [">=0.20.0", "<1.1.0"] source-paths: ["models"] analysis-paths: ["analysis"] diff --git a/run_test.sh b/run_test.sh index aa03d9d3..f6be5a64 100755 --- a/run_test.sh +++ b/run_test.sh @@ -3,7 +3,7 @@ echo "Setting up virtual environment" VENV="venv/bin/activate" if [[ ! -f $VENV ]]; then - python3 -m venv venv + python3.8 -m venv venv . $VENV pip install --upgrade pip setuptools if [ $1 == 'databricks' ]