From 1aace942243084626afeea1f569cce50ea4a7a0f Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Fri, 24 Nov 2023 12:50:12 +0000 Subject: [PATCH] Release 1.3.0a2 (#711) Features * Add ProfileMapping for Vertica by @perttus in #540 and #688 * Add ProfileMapping for Snowflake encrypted private key path by @ivanstillfront in #608 * Add support for Snowflake encrypted private key environment variable by @DanMawdsleyBA in #649 * Add DbtDocsGCSOperator for uploading dbt docs to GCS by @jbandoro in #616 Others Rebased on changes released on 1.2.5 (1.3.0a1 was based on 1.2.4) --- CHANGELOG.rst | 5 +++-- cosmos/__init__.py | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 281290970..ecade7112 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,13 +1,14 @@ Changelog ========= -1.3.0a1 (2023-10-26) +1.3.0a2 (2023-11-23) -------------------- Features -* Add ``ProfileMapping`` for Vertica by @perttus in #540 +* Add ``ProfileMapping`` for Vertica by @perttus in #540 and #688 * Add ``ProfileMapping`` for Snowflake encrypted private key path by @ivanstillfront in #608 +* Add support for Snowflake encrypted private key environment variable by @DanMawdsleyBA in #649 * Add ``DbtDocsGCSOperator`` for uploading dbt docs to GCS by @jbandoro in #616 diff --git a/cosmos/__init__.py b/cosmos/__init__.py index 0fc8c28f8..f1f204634 100644 --- a/cosmos/__init__.py +++ b/cosmos/__init__.py @@ -5,7 +5,8 @@ Contains dags, task groups, and operators. """ -__version__ = "1.2.5" +__version__ = "1.3.0a2" + from cosmos.airflow.dag import DbtDag from cosmos.airflow.task_group import DbtTaskGroup