diff --git a/README.md b/README.md index 39415247..c59a29d5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ This project is hosted on PyPI, so you should be able to install it and the nece `pip3 install dbt-duckdb` -The latest supported version targets `dbt-core` 1.4.x and `duckdb` version 0.7.x, but we work hard to ensure that newer +The latest supported version targets `dbt-core` 1.5.x and `duckdb` version 0.7.x, but we work hard to ensure that newer versions of DuckDB will continue to work with the adapter as they are released. If you would like to use our new (and experimental!) support for persisting the tables that DuckDB creates to the [AWS Glue Catalog](https://aws.amazon.com/glue/), you should install `dbt-duckdb[glue]` in order to get the AWS dependencies as well. @@ -94,9 +94,9 @@ Instead of specifying the credentials through the settings block, you can also u #### Attaching Additional Databases -DuckDB version `0.7.0` and dbt-duckdb version `1.4.0` support [attaching additional databases](https://duckdb.org/docs/sql/statements/attach.html) to your dbt-duckdb run so that you can read +DuckDB version `0.7.0` added support for [attaching additional databases](https://duckdb.org/docs/sql/statements/attach.html) to your dbt-duckdb run so that you can read and write from multiple databases. Additional databases may be configured using [dbt run hooks](https://docs.getdbt.com/docs/build/hooks-operations) or via the `attach` argument -in your profile: +in your profile that was added in dbt-duckdb `1.4.0`: ``` default: diff --git a/dbt/adapters/duckdb/__version__.py b/dbt/adapters/duckdb/__version__.py index fa6c5a1a..e3a0f015 100644 --- a/dbt/adapters/duckdb/__version__.py +++ b/dbt/adapters/duckdb/__version__.py @@ -1 +1 @@ -version = "1.5.0rc1" +version = "1.5.0" diff --git a/dev-requirements.txt b/dev-requirements.txt index bf248e99..5db74f4c 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -2,7 +2,7 @@ # git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core # git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=tests/adapter -dbt-tests-adapter==1.5.0rc1 +dbt-tests-adapter==1.5.0 boto3 mypy-boto3-glue diff --git a/setup.py b/setup.py index cbf439f0..745e929b 100644 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ def _dbt_duckdb_version(): packages=find_namespace_packages(include=["dbt", "dbt.*"]), include_package_data=True, install_requires=[ - "dbt-core~=1.5.0rc1", + "dbt-core~=1.5.0", "duckdb>=0.5.0", ], extras_require={