Skip to content

Commit

Permalink
Merge pull request #50 from starburstdata/hovaesco/release-1.0.3
Browse files Browse the repository at this point in the history
Release 1.0.3
  • Loading branch information
hovaesco authored Feb 28, 2022
2 parents 180af4a + 9741590 commit bd3f4a5
Show file tree
Hide file tree
Showing 10 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .bumpversion-dbt.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.3
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.0.1
current_version = 1.0.3
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This repository represents a fork of the [dbt-presto](https://github.com/dbt-lab

### Compatibility

This dbt plugin has been tested against `Trino` version `368` and `Starburst Enterprise` version `368-e`.
This dbt plugin has been tested against `Trino` version `371` and `Starburst Enterprise` version `371-e`.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/trino/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.0.1"
version = "1.0.3"
2 changes: 1 addition & 1 deletion docker-compose-starburst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
trino:
ports:
- "8080:8080"
image: "starburstdata/starburst-enterprise:368-e"
image: "starburstdata/starburst-enterprise:371-e"
volumes:
- ./docker/starburst/etc:/etc/starburst
- ./docker/starburst/catalog:/etc/starburst/catalog
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-trino.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
trino:
ports:
- "8080:8080"
image: "trinodb/trino:368"
image: "trinodb/trino:371"
volumes:
- ./docker/trino/etc:/usr/lib/trino/etc:ro
- ./docker/trino/catalog:/etc/trino/catalog
Expand Down
1 change: 0 additions & 1 deletion docker/starburst/etc/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ node-scheduler.include-coordinator=true
http-server.http.port=8080
query.max-memory=1GB
query.max-memory-per-node=200MB
query.max-total-memory-per-node=400MB
discovery-server.enabled=true
discovery.uri=http://localhost:8080
1 change: 0 additions & 1 deletion docker/trino/etc/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,5 @@ node-scheduler.include-coordinator=true
http-server.http.port=8080
query.max-memory=1GB
query.max-memory-per-node=200MB
query.max-total-memory-per-node=400MB
discovery-server.enabled=true
discovery.uri=http://localhost:8080
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dbt-core==1.0.1
dbt-core==1.0.3
trino==0.310.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def _dbt_trino_version():
package_version = _dbt_trino_version()
description = """The trino adapter plugin for dbt (data build tool)"""

dbt_version = "1.0.1"
dbt_version = "1.0.3"
# the package version should be the dbt version, with maybe some things on the
# ends of it. (0.19.1 vs 0.19.1a1, 0.19.1.1, ...)
if not package_version.startswith(dbt_version):
Expand Down

0 comments on commit bd3f4a5

Please sign in to comment.