From a0d0ddfdc7038470d24657967bfb912a8916b870 Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Thu, 14 Apr 2022 16:27:04 +0100 Subject: [PATCH] Release 0.8.1 (#321) --- docs/CHANGELOG.md | 5 +++++ src/astro/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 754769de7..cc92167c9 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 0.8.1 + +Bug fix: +* Snowflake transform without `input_table` [#319](https://github.com/astro-projects/astro/issues/319) + ## 0.8.0 diff --git a/src/astro/__init__.py b/src/astro/__init__.py index 27ab83fc0..56d8a449d 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.8.0" +__version__ = "0.8.1" from astro.dataframe import dataframe # noqa: F401