From a9c2dbac1445bb75c0b3852aa3ad49df32bcc543 Mon Sep 17 00:00:00 2001 From: Pankaj Koti Date: Fri, 7 Jun 2024 19:08:02 +0530 Subject: [PATCH] Release 1.4.3 --- CHANGELOG.rst | 16 ++++++++++++++++ cosmos/__init__.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2e6331eda..7757d5fb5 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,22 @@ Changelog ========= +1.4.3 (2024-06-07) +----------------- + +Bug fixes + +* Bring back ``dataset`` as a required field for BigQuery profile by @pankajkoti in #1033 + +Enhancements + +* Only run ``dbt deps`` when there are dependencies by @tatiana in #1030 + +Docs + +* Fix docs so it does not reference non-existing ``get_dbt_dataset`` by @tatiana in #1034 + + 1.4.2 (2024-06-06) ------------------ diff --git a/cosmos/__init__.py b/cosmos/__init__.py index 7a73e722e..100649bfb 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,7 @@ Contains dags, task groups, and operators. """ -__version__ = "1.4.2" +__version__ = "1.4.3" from cosmos.airflow.dag import DbtDag