diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index c045ed062..266e03cbf 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,4 +1,20 @@ # Changelog + +## 0.11.0 + +Feature: +* Added Cleanup operator to clean temporary tables [#187](https://github.com/astronomer/astro-sdk/issues/187) [#436](https://github.com/astronomer/astro-sdk/issues/436) + +Internals: +* Added a Pull Request template [#205](https://github.com/astronomer/astro-sdk/issues/205) +* Added sphinx documentation for readthedocs [#276](https://github.com/astronomer/astro-sdk/issues/276) [#472](https://github.com/astronomer/astro-sdk/issues/472) + +Enhancement: +* Fail LoadFile operator when input_file does not exist [#467](https://github.com/astronomer/astro-sdk/issues/467) +* Create scripts to launch benchmark testing to Google cloud [#432](https://github.com/astronomer/astro-sdk/pull/496) +* Bump Google Provider for google extra [#294](https://github.com/astronomer/astro-sdk/pull/294) + + ## 0.10.0 Feature: diff --git a/src/astro/__init__.py b/src/astro/__init__.py index 043c95621..332d794d0 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.10.0" +__version__ = "0.11.0" # The following line is an import work-around to avoid raising a circular dependency issue related to `create_database`