Skip to content

Commit e63f89c

Browse files
committed
chore: Bump version to 0.8.0
1 parent ea2dcac commit e63f89c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- uses: abatilo/actions-poetry@v2.1.3
2222
- name: install
23-
run: poetry install -E amazon
23+
run: poetry install -E amazon -E postgres
2424
- name: flake8
2525
run: poetry run flake8 .
2626
- name: mypy

airflow_dbt_python/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
__author__ = "Tomás Farías Santana"
33
__copyright__ = "Copyright 2021 Tomás Farías Santana"
44
__title__ = "airflow-dbt-python"
5-
__version__ = "0.7.2"
5+
__version__ = "0.8.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "airflow-dbt-python"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
description = "A dbt operator for Airflow that uses the dbt Python package"
55
authors = ["Tomás Farías Santana <tomas@tomasfarias.dev>"]
66
license = "MIT"
@@ -21,7 +21,7 @@ dbt-core = ">=0.19, < 0.22"
2121
Flask-OpenID = ">=1.3.0"
2222

2323
apache-airflow-providers-amazon = { version = "^2.1.0", optional = true }
24-
dbt-postgres = "0.21"
24+
dbt-postgres = { version = ">=0.19, < 0.22", optional = true }
2525
dbt-redshift = { version = ">=0.19, < 0.22", optional = true }
2626
dbt-snowflake = { version = ">=0.19, < 0.22", optional = true }
2727
dbt-bigquery = { version = ">=0.19, < 0.22", optional = true }

0 commit comments

Comments
 (0)