diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 4bba9333c..f6e17dd32 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0b2 +current_version = 1.8.0b3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.0-b3.md b/.changes/1.8.0-b3.md new file mode 100644 index 000000000..adcc4e04c --- /dev/null +++ b/.changes/1.8.0-b3.md @@ -0,0 +1,17 @@ +## dbt-snowflake 1.8.0-b3 - April 17, 2024 + +### Features + +- Add external_access_integration and secret to python models ([#955](https://github.com/dbt-labs/dbt-snowflake/issues/955)) +- Support TableLastModifiedMetadataBatch capability ([#965](https://github.com/dbt-labs/dbt-snowflake/issues/965)) + +### Fixes + +- skipping a test that provides a false condition ([#976](https://github.com/dbt-labs/dbt-snowflake/issues/976)) + +### Under the Hood + +- Update dependabot to cover GHA ([#967](https://github.com/dbt-labs/dbt-snowflake/issues/967)) + +### Contributors +- [@Lindblomsebastian](https://github.com/Lindblomsebastian) ([#955](https://github.com/dbt-labs/dbt-snowflake/issues/955)) diff --git a/.changes/unreleased/Features-20240402-131330.yaml b/.changes/1.8.0/Features-20240402-131330.yaml similarity index 100% rename from .changes/unreleased/Features-20240402-131330.yaml rename to .changes/1.8.0/Features-20240402-131330.yaml diff --git a/.changes/unreleased/Features-20240404-171704.yaml b/.changes/1.8.0/Features-20240404-171704.yaml similarity index 100% rename from .changes/unreleased/Features-20240404-171704.yaml rename to .changes/1.8.0/Features-20240404-171704.yaml diff --git a/.changes/unreleased/Fixes-20240416-203625.yaml b/.changes/1.8.0/Fixes-20240416-203625.yaml similarity index 100% rename from .changes/unreleased/Fixes-20240416-203625.yaml rename to .changes/1.8.0/Fixes-20240416-203625.yaml diff --git a/.changes/unreleased/Under the Hood-20240410-181635.yaml b/.changes/1.8.0/Under the Hood-20240410-181635.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240410-181635.yaml rename to .changes/1.8.0/Under the Hood-20240410-181635.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 549f17594..1e34c065b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - Do not edit this file directly. This file is auto-generated using [changie](https://github.com/miniscruff/changie). For details on how to document a change, see [the contributing guide](https://github.com/dbt-labs/dbt-snowflake/blob/main/CONTRIBUTING.md#adding-changelog-entry) +## dbt-snowflake 1.8.0-b3 - April 17, 2024 + +### Features + +- Add external_access_integration and secret to python models ([#955](https://github.com/dbt-labs/dbt-snowflake/issues/955)) +- Support TableLastModifiedMetadataBatch capability ([#965](https://github.com/dbt-labs/dbt-snowflake/issues/965)) + +### Fixes + +- skipping a test that provides a false condition ([#976](https://github.com/dbt-labs/dbt-snowflake/issues/976)) + +### Under the Hood + +- Update dependabot to cover GHA ([#967](https://github.com/dbt-labs/dbt-snowflake/issues/967)) + +### Contributors +- [@Lindblomsebastian](https://github.com/Lindblomsebastian) ([#955](https://github.com/dbt-labs/dbt-snowflake/issues/955)) + + ## dbt-snowflake 1.8.0-b2 - April 03, 2024 ### Features @@ -31,8 +50,6 @@ - Pin `black>=24.3` in `dev-requirements.txt` ([#959](https://github.com/dbt-labs/dbt-snowflake/pull/959)) - - ## dbt-snowflake 1.8.0-b1 - March 02, 2024 ### Features diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 7d16c28f0..b0f82cbca 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.8.0b2" +version = "1.8.0b3" diff --git a/setup.py b/setup.py index 34743f7d8..7847b5b99 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def _get_plugin_version_dict(): package_name = "dbt-snowflake" -package_version = "1.8.0b2" +package_version = "1.8.0b3" description = """The Snowflake adapter plugin for dbt""" setup(