Skip to content

Commit

Permalink
release v1.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 committed Mar 15, 2024
1 parent d11fd6b commit 126122f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ The dbt models for managing data transformations in RisingWave is similar to typ
| ephemeral | This materialization uses common table expressions in RisingWave under the hood. To use this materialization, add {{ config(materialized='ephemeral') }} to your model SQL files. |
| table | Create a table. To use this materialization, add {{ config(materialized='table') }} to your model SQL files. |
| view | Create a view. To use this materialization, add {{ config(materialized='view') }} to your model SQL files. |
| incremental | Use `materialized_view` instead if possible, since RisingWave is designed to use materialized view to manage data transformation in an incremental way. From v1.7.2, dbt-risingwave support `incremental` model to give users better control of when to update their model. This model will update table in a batch way incrementally. |
| incremental | Use `materialized_view` instead if possible, since RisingWave is designed to use materialized view to manage data transformation in an incremental way. From v1.7.3, dbt-risingwave support `incremental` model to give users better control of when to update their model. This model will update table in a batch way incrementally. |
| source | Define a source {{ config(materialized='source') }}. You need to provide your create source statement as a whole in this model. |
| table_with_connector | Define a table with a connector {{ config(materialized='table_with_connector') }}. You need to provide your create table with connector statement as a whole in this model. Because dbt `table` has its own semantics, RisingWave use `table_with_connector` to distinguish itself from it. |
| sink | Define a sink {{ config(materialized='sink') }}. You need to provide your create sink statement as a whole in this model. |
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/risingwave/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.7.2"
version = "1.7.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

package_name = "dbt-risingwave"
# make sure this always matches dbt/adapters/{adapter}/__version__.py
package_version = "1.7.2"
package_version = "1.7.3"
description = """The RisingWave adapter plugin for dbt"""

with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
Expand Down

0 comments on commit 126122f

Please sign in to comment.