Skip to content

Commit b0970f8

Browse files
authored
dbt-materialize: release v1.8.3 (#28372)
### Motivation Release dbt-materialize v1.8.3 to pick up #28138 (review) ### Tips for reviewer <!-- Leave some tips for your reviewer, like: * The diff is much smaller if viewed with whitespace hidden. * [Some function/module/file] deserves extra attention. * [Some function/module/file] is pure code movement and only needs a skim. Delete this section if no tips. --> ### Checklist - [ ] This PR has adequate test coverage / QA involvement has been duly considered. ([trigger-ci for additional test/nightly runs](https://trigger-ci.dev.materialize.com/)) - [ ] This PR has an associated up-to-date [design doc](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/README.md), is a design doc ([template](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/design/00000000_template.md)), or is sufficiently small to not require a design. <!-- Reference the design in the description. --> - [ ] If this PR evolves [an existing `$T ⇔ Proto$T` mapping](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/command-and-response-binary-encoding.md) (possibly in a backwards-incompatible way), then it is tagged with a `T-proto` label. - [ ] If this PR will require changes to cloud orchestration or tests, there is a companion cloud PR to account for those changes that is tagged with the release-blocker label ([example](MaterializeInc/cloud#5021)). <!-- Ask in #team-cloud on Slack if you need help preparing the cloud PR. --> - [ ] This PR includes the following [user-facing behavior changes](https://github.com/MaterializeInc/materialize/blob/main/doc/developer/guide-changes.md#what-changes-require-a-release-note): - <!-- Add release notes here or explicitly state that there are no user-facing behavior changes. -->
1 parent 88311ae commit b0970f8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

misc/dbt-materialize/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# dbt-materialize Changelog
22

3-
## Unreleased
3+
## 1.8.3 - 2024-07-19
44

55
* Enable cross-database references ([#27686](https://github.com/MaterializeInc/materialize/pull/27686)). Although cross-database references are not supported in `dbt-postgres`, databases in Materialize are purely used for namespacing, and therefore do not present the same constraint.
66

misc/dbt-materialize/dbt/adapters/materialize/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# limitations under the License.
1616

1717
# If you bump this version, bump it in setup.py too.
18-
version = "1.8.2"
18+
version = "1.8.3"

misc/dbt-materialize/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
# This adapter's minor version should match the required dbt-postgres version,
2727
# but patch versions may differ.
2828
# If you bump this version, bump it in __version__.py too.
29-
version="1.8.2",
29+
version="1.8.3",
3030
description="The Materialize adapter plugin for dbt.",
3131
long_description=(Path(__file__).parent / "README.md").open().read(),
3232
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)