Skip to content

Commit

Permalink
dbt-materialize: upgrade to dbt-postgres v1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyiliev committed Dec 17, 2024
1 parent 9e05917 commit 1e7011f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions misc/dbt-materialize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# dbt-materialize Changelog

## 1.9.0 - 2024-12-17

* Upgrade to `dbt-postgres` v1.9.0.

## 1.8.6 - 2024-09-25

* Enable the `cluster` configuration for seeds, which allows specifying a target
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
# limitations under the License.

# If you bump this version, bump it in setup.py too.
version = "1.8.6"
version = "1.9.0"
8 changes: 4 additions & 4 deletions misc/dbt-materialize/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# This adapter's minor version should match the required dbt-postgres version,
# but patch versions may differ.
# If you bump this version, bump it in __version__.py too.
version="1.8.6",
version="1.9.0",
description="The Materialize adapter plugin for dbt.",
long_description=(Path(__file__).parent / "README.md").open().read(),
long_description_content_type="text/markdown",
Expand All @@ -42,11 +42,11 @@
]
},
install_requires=[
"dbt-common>=0.1.0a1,<2.0",
"dbt-adapters>=0.1.0a1,<2.0",
"dbt-common>=1.10,<2.0",
"dbt-adapters>=1.7,<2.0",
# add dbt-core to ensure backwards compatibility of installation, this is not a functional dependency
"dbt-core>=1.8.0",
"dbt-postgres~=1.8.0",
"dbt-postgres>=1.8,<1.10",
],
extras_require={
"dev": [
Expand Down

0 comments on commit 1e7011f

Please sign in to comment.