diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 33b09ce5a..51b632ace 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0b1 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b5921240d..cc8ef1c3b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,17 @@ -## dbt-snowflake 1.1.0 (TBD) +## dbt-snowflake 1.1.0b1 (March 23, 2022) ### Features - Adds tests for incremental model unique key parameter ([#91](https://github.com/dbt-labs/dbt-snowflake/issues/91)) +- enables mfa token caching for linux when using the username_password_mfa authenticator ([#65](https://github.com/dbt-labs/dbt-snowflake/pull/65)) ### Fixes - Add unique\_id field to docs generation test catalogs; a follow-on PR to core PR ([#4168](https://github.com/dbt-labs/dbt-core/pull/4618)) ### Under the hood - Add `query_id` for a query to `run_result.json` ([#40](https://github.com/dbt-labs/dbt-snowflake/pull/40)) +- Change logic for Post-failure job run ([#67](https://github.com/dbt-labs/dbt-snowflake/pull/67)) +- Update to version bumping script ([#68](https://github.com/dbt-labs/dbt-snowflake/pull/68)) +- Add contributing.md file for snowflake adapter repo ([#79](https://github.com/dbt-labs/dbt-snowflake/pull/79)) ### Contributors - [@joshuataylor](https://github.com/joshuataylor) ([#40](https://github.com/dbt-labs/dbt-snowflake/pull/40)) @@ -24,6 +28,8 @@ ### Under the hood - Resolves an issue caused when the Snowflake OCSP server is not accessible, by exposing the `insecure_mode` boolean avalable in the Snowflake python connector ([#31](https://github.com/dbt-labs/dbt-snowflake/issues/31), [#49](https://github.com/dbt-labs/dbt-snowflake/pull/49)) - Fix test related to preventing coercion of boolean values (True, False) to numeric values (0, 1) in query results ([#76](https://github.com/dbt-labs/dbt-snowflake/issues/76)) +- Add Stale messaging Github Action workflow ([#84](https://github.com/dbt-labs/dbt-snowflake/pull/84)) + ### Contributors - [@anthu](https://github.com/anthu) ([#48](https://github.com/dbt-labs/dbt-snowflake/pull/48)) diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index de43469d2..a86cb5c59 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = '1.0.0' +version = '1.1.0b1' diff --git a/setup.py b/setup.py index a7ebcb53b..ba9bb5bd7 100644 --- a/setup.py +++ b/setup.py @@ -52,7 +52,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.0.0" +package_version = "1.1.0b1" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""