Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v0.8.1 #31

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## v0.8.1
Fixes:
- upgrade `airflow-mcd` to 0.3.3 version to fix bug with DAG callbacks
- fix correct usage of the default retry policy if none has been passed.

## v0.8.0
Features:
- remove `airflow.Dataset` from backfill DAGs
Expand Down
2 changes: 1 addition & 1 deletion dbt_af/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
]

# note that this version is maintained by the release manager - do not update it manually
__version__ = '0.8.0'
__version__ = '0.8.1'

from . import conf, dags # noqa
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "dbt-af"
# note that this version is maintained by the release manager - do not update it manually
version = "0.8.0"
version = "0.8.1"
description = "Distibuted dbt runs on Apache Airflow"
authors = [
"Nikita Yurasov <[email protected]>",
Expand Down
Loading