From 1d340aa39a688465fd800ed2da52188adb7676fd Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 31 May 2023 18:59:38 +0000 Subject: [PATCH] Bumping version to 1.4.3 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.4.3.md | 5 +++++ .changes/unreleased/Fixes-20230518-011334.yaml | 6 ------ CHANGELOG.md | 9 ++++++++- dbt/adapters/snowflake/__version__.py | 2 +- setup.py | 2 +- 6 files changed, 16 insertions(+), 10 deletions(-) create mode 100644 .changes/1.4.3.md delete mode 100644 .changes/unreleased/Fixes-20230518-011334.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 443734223..8a190fed1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.2 +current_version = 1.4.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.3.md b/.changes/1.4.3.md new file mode 100644 index 000000000..ee5e20851 --- /dev/null +++ b/.changes/1.4.3.md @@ -0,0 +1,5 @@ +## dbt-snowflake 1.4.3 - May 31, 2023 + +### Fixes + +- Address some issues regarding gustom schema overrides. ([#393](https://github.com/dbt-labs/dbt-snowflake/issues/393)) diff --git a/.changes/unreleased/Fixes-20230518-011334.yaml b/.changes/unreleased/Fixes-20230518-011334.yaml deleted file mode 100644 index f83551f73..000000000 --- a/.changes/unreleased/Fixes-20230518-011334.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: Address some issues regarding gustom schema overrides. -time: 2023-05-18T01:13:34.108819-07:00 -custom: - Author: versusfacit - Issue: "393" diff --git a/CHANGELOG.md b/CHANGELOG.md index 67068cffb..c6361668a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "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.4.3 - May 31, 2023 + +### Fixes + +- Address some issues regarding gustom schema overrides. ([#393](https://github.com/dbt-labs/dbt-snowflake/issues/393)) + + + ## dbt-snowflake 1.4.2 - March 16, 2023 ### Features @@ -29,7 +37,6 @@ - [@joshuataylor](https://github.com/joshuataylor) ([#331](https://github.com/dbt-labs/dbt-spark/issues/331)) - [@mikealfare](https://github.com/mikealfare) ([#331](https://github.com/dbt-labs/dbt-spark/issues/331), [#476](https://github.com/dbt-labs/dbt-snowflake/pull/476), [#476](https://github.com/dbt-labs/dbt-snowflake/pull/476)) - ## dbt-snowflake 1.4.1 - February 08, 2023 ### Under the Hood diff --git a/dbt/adapters/snowflake/__version__.py b/dbt/adapters/snowflake/__version__.py index 841aad2c6..8fb4690e7 100644 --- a/dbt/adapters/snowflake/__version__.py +++ b/dbt/adapters/snowflake/__version__.py @@ -1 +1 @@ -version = "1.4.2" +version = "1.4.3" diff --git a/setup.py b/setup.py index 39b270470..b9ae4c146 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,7 @@ def _get_dbt_core_version(): package_name = "dbt-snowflake" -package_version = "1.4.2" +package_version = "1.4.3" dbt_core_version = _get_dbt_core_version() description = """The Snowflake adapter plugin for dbt"""