From 54bf3fd825771f62695a5246c1d3625c90d3e4dc Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 25 May 2023 14:24:17 +0100 Subject: [PATCH] Release 1.6.1 (#1947) Bug Fixes * Fix AstroCustomXcomBackend circular import issue. https://github.com/astronomer/astro-sdk/pull/1943 --- python-sdk/docs/CHANGELOG.md | 13 +++++++++++++ python-sdk/src/astro/__init__.py | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/python-sdk/docs/CHANGELOG.md b/python-sdk/docs/CHANGELOG.md index d0101f5da..c7aa65565 100644 --- a/python-sdk/docs/CHANGELOG.md +++ b/python-sdk/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 1.6.1 + +### Bug Fixes + +- Fix AstroCustomXcomBackend circular import issue. [#1943](https://github.com/astronomer/astro-sdk/pull/1943) + ## 1.6.0 ### Feature @@ -34,6 +40,13 @@ - Add basic `tiltifle` for local dev [#1819](https://github.com/astronomer/astro-sdk/pull/1819) +## 1.5.4 + +### Bug Fixes + +- Fix AstroCustomXcomBackend circular import issue. [#1943](https://github.com/astronomer/astro-sdk/pull/1943) + + ## 1.5.3 ### Bug fix: diff --git a/python-sdk/src/astro/__init__.py b/python-sdk/src/astro/__init__.py index 1ec333df2..3b05a2568 100644 --- a/python-sdk/src/astro/__init__.py +++ b/python-sdk/src/astro/__init__.py @@ -1,6 +1,6 @@ """A decorator that allows users to run SQL queries natively in Airflow.""" -__version__ = "1.6.0" +__version__ = "1.6.1" # This is needed to allow Airflow to pick up specific metadata fields it needs