diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 266e03cbf..03f092b1c 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## 0.11.1 + +Bug fix: +* Pass operator kwargs to dataframe decorator [#630](https://github.com/astronomer/astro-sdk/issues/630) + + ## 0.11.0 Feature: diff --git a/src/astro/__init__.py b/src/astro/__init__.py index 332d794d0..63793bdd9 100644 --- a/src/astro/__init__.py +++ b/src/astro/__init__.py @@ -1,6 +1,6 @@ """A decorator that allows users to run SQL queries natively in Airflow.""" -__version__ = "0.11.0" +__version__ = "0.11.1" # The following line is an import work-around to avoid raising a circular dependency issue related to `create_database`