Skip to content

Commit

Permalink
Bumping version to v1.7.0b2 and generate changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
FishtownBuildBot committed Sep 15, 2023
1 parent 903ccea commit 336bd9f
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.7.0b1
current_version = v1.7.0b2
parse = (?P<major>[\d]+) # major version number
\.(?P<minor>[\d]+) # minor version number
\.(?P<patch>[\d]+) # patch version number
Expand Down
22 changes: 22 additions & 0 deletions .changes/1.7.0-b2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## dbt-snowflake 1.7.0-b2 - September 15, 2023

### Fixes

- remove senesitive creds from dbt debug stdout ([#754](https://github.com/dbt-labs/dbt-snowflake/issues/754))
- changes expected value types to AnyInteger to take into account changes in core ([#762](https://github.com/dbt-labs/dbt-snowflake/issues/762))
- Fixing comment on syntax for dynamic tables ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769))

### Under the Hood

- Restructure macros files - move relation ddl statements into separate files and directories ([#750](https://github.com/dbt-labs/dbt-snowflake/issues/750))

### Dependencies

- Bump mypy from 1.5.0 to 1.5.1 ([#749](https://github.com/dbt-labs/dbt-snowflake/pull/749))
- Update tox requirement from ~=4.9 to ~=4.10 ([#752](https://github.com/dbt-labs/dbt-snowflake/pull/752))
- Update tox requirement from ~=4.10 to ~=4.11 ([#759](https://github.com/dbt-labs/dbt-snowflake/pull/759))
- Update pre-commit requirement from ~=3.3 to ~=3.4 ([#760](https://github.com/dbt-labs/dbt-snowflake/pull/760))
- Update black requirement from ~=23.7 to ~=23.9 ([#765](https://github.com/dbt-labs/dbt-snowflake/pull/765))

### Contributors
- [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769))
File renamed without changes.
File renamed without changes.
File renamed without changes.
25 changes: 24 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,30 @@
- "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.7.0-b2 - September 15, 2023

### Fixes

- remove senesitive creds from dbt debug stdout ([#754](https://github.com/dbt-labs/dbt-snowflake/issues/754))
- changes expected value types to AnyInteger to take into account changes in core ([#762](https://github.com/dbt-labs/dbt-snowflake/issues/762))
- Fixing comment on syntax for dynamic tables ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769))

### Under the Hood

- Restructure macros files - move relation ddl statements into separate files and directories ([#750](https://github.com/dbt-labs/dbt-snowflake/issues/750))

### Dependencies

- Bump mypy from 1.5.0 to 1.5.1 ([#749](https://github.com/dbt-labs/dbt-snowflake/pull/749))
- Update tox requirement from ~=4.9 to ~=4.10 ([#752](https://github.com/dbt-labs/dbt-snowflake/pull/752))
- Update tox requirement from ~=4.10 to ~=4.11 ([#759](https://github.com/dbt-labs/dbt-snowflake/pull/759))
- Update pre-commit requirement from ~=3.3 to ~=3.4 ([#760](https://github.com/dbt-labs/dbt-snowflake/pull/760))
- Update black requirement from ~=23.7 to ~=23.9 ([#765](https://github.com/dbt-labs/dbt-snowflake/pull/765))

### Contributors
- [@kaarthik108](https://github.com/kaarthik108) ([#769](https://github.com/dbt-labs/dbt-snowflake/issues/769))


## dbt-snowflake 1.7.0-b1 - August 17, 2023

### Fixes
Expand Down Expand Up @@ -41,7 +65,6 @@
- [@gabeschenz](https://github.com/gabeschenz) ([#619](https://github.com/dbt-labs/dbt-snowflake/issues/619))
- [@julio-romero](https://github.com/julio-romero) ([#711](https://github.com/dbt-labs/dbt-snowflake/issues/711))


## Previous Releases
For information on prior major and minor releases, see their changelogs:
- [1.6](https://github.com/dbt-labs/dbt-snowflake/blob/1.6.latest/CHANGELOG.md)
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/snowflake/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.7.0b1"
version = "1.7.0b2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _get_dbt_core_version():


package_name = "dbt-snowflake"
package_version = "1.7.0b1"
package_version = "1.7.0b2"
dbt_core_version = _get_dbt_core_version()
description = """The Snowflake adapter plugin for dbt"""

Expand Down

0 comments on commit 336bd9f

Please sign in to comment.