From 7f6cffecf38b7c41aa441eb020d464ba1e20bf9e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 29 Jul 2022 15:27:56 -0400 Subject: [PATCH] Bumping version to 1.3.0b1 (#412) * Bumping version to 1.3.0b1 * Update CHANGELOG.md * Fix whitespace * Fixing whitespace Co-authored-by: Github Build Bot Co-authored-by: leahwicz <60146280+leahwicz@users.noreply.github.com> --- .bumpversion.cfg | 2 +- CHANGELOG.md | 9 +++++++-- dbt/adapters/spark/__version__.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 605b6f378..ef3954f4c 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0a1 +current_version = 1.3.0b1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d015a26c7..5948429a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ -## dbt-spark 1.3.0b1 (Release TBD) +## dbt-spark 1.3.0b2 (Release TBD) + +## dbt-spark 1.3.0b1 (July 29, 2022) ### Features -- support python model through notebook, currently supported materializations are table and incremental. ([#377](https://github.com/dbt-labs/dbt-spark/pull/377)) +- Support python model through notebook, currently supported materializations are table and incremental. ([#377](https://github.com/dbt-labs/dbt-spark/pull/377)) ### Fixes - Pin `pyodbc` to version 4.0.32 to prevent overwriting `libodbc.so` and `libltdl.so` on Linux ([#397](https://github.com/dbt-labs/dbt-spark/issues/397/), [#398](https://github.com/dbt-labs/dbt-spark/pull/398/)) +### Under the hood +- Support core incremental refactor ([#394](https://github.com/dbt-labs/dbt-spark/issues/394)) + ### Contributors - [@barberscott](https://github.com/barberscott) ([#398](https://github.com/dbt-labs/dbt-spark/pull/398/)) diff --git a/dbt/adapters/spark/__version__.py b/dbt/adapters/spark/__version__.py index a9fe3c3ee..4b49b750d 100644 --- a/dbt/adapters/spark/__version__.py +++ b/dbt/adapters/spark/__version__.py @@ -1 +1 @@ -version = "1.3.0a1" +version = "1.3.0b1" diff --git a/setup.py b/setup.py index cb0c40aec..229e89a17 100644 --- a/setup.py +++ b/setup.py @@ -50,7 +50,7 @@ def _get_dbt_core_version(): package_name = "dbt-spark" -package_version = "1.3.0a1" +package_version = "1.3.0b1" dbt_core_version = _get_dbt_core_version() description = """The Apache Spark adapter plugin for dbt"""