From 50388828501f3623015309c47a89c9dc1b0d39c8 Mon Sep 17 00:00:00 2001 From: Nikita Yurasov Date: Mon, 23 Sep 2024 21:43:02 +0200 Subject: [PATCH] release: v0.8.1 --- CHANGELOG.md | 5 +++++ dbt_af/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a94e844..2cda95f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/dbt_af/__init__.py b/dbt_af/__init__.py index e5c5453..5f99af4 100644 --- a/dbt_af/__init__.py +++ b/dbt_af/__init__.py @@ -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 diff --git a/pyproject.toml b/pyproject.toml index fb1793b..e3e01d6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ",