diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index f98c0e2..92b2ef5 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Changelog -## 1.3.4 (May 5nd, 2023) +## 1.3.2 (May 10th, 2023) Added support for iceberg table format Added support for plain authorization connection Added support for Python 3.7 diff --git a/dbt/adapters/impala/__version__.py b/dbt/adapters/impala/__version__.py index 61d0387..509cb5a 100644 --- a/dbt/adapters/impala/__version__.py +++ b/dbt/adapters/impala/__version__.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -version = "1.3.4" +version = "1.3.2" diff --git a/setup.py b/setup.py index 8f8f9ae..aba68d9 100644 --- a/setup.py +++ b/setup.py @@ -46,7 +46,7 @@ def _get_dbt_core_version(): package_name = "dbt-impala" # make sure this always matches dbt/adapters/dbt_impala/__version__.py -package_version = "1.3.4" +package_version = "1.3.2" description = """The Impala adapter plugin for dbt""" dbt_core_version = _get_dbt_core_version()