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