Skip to content

Commit

Permalink
Bumping version to 1.0.1rc1 (#131)
Browse files Browse the repository at this point in the history
* Bumping version to 1.0.1rc1

* Update CHANGELOG.md

* Update CHANGELOG.md

Co-authored-by: Github Build Bot <[email protected]>
Co-authored-by: leahwicz <[email protected]>
  • Loading branch information
3 people authored Apr 6, 2022
1 parent 5d57bff commit 04afecc
Show file tree
Hide file tree
Showing 4 changed files with 14 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.0.0
current_version = 1.0.1rc1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## dbt-snowflake 1.0.1rc1 (April 6, 2022)

### Under the hood
- Enable mfa token cache for linux ([#128](https://github.com/dbt-labs/dbt-snowflake/pull/65))
- 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/pull/76))
- Fixes CI to depend on the release branch for Core ([#128](https://github.com/dbt-labs/dbt-snowflake/pull/128))

### Contributors
- [@anthu](https://github.com/anthu) ([#76](https://github.com/dbt-labs/dbt-snowflake/pull/76))
- [@tekumara](https://github.com/tekumara) ([#128](https://github.com/dbt-labs/dbt-snowflake/pull/65))

## dbt-snowflake 1.0.0 (December 3, 2021)

## dbt-snowflake 1.0.0rc2 (November 24, 2021)
Expand All @@ -8,7 +19,6 @@

### 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))

### Contributors
- [@anthu](https://github.com/anthu) ([#48](https://github.com/dbt-labs/dbt-snowflake/pull/48))
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.0.0'
version = '1.0.1rc1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def _get_dbt_core_version():

# TODO remove old logic and add to versionBump script
package_name = "dbt-snowflake"
package_version = "1.0.0"
package_version = "1.0.1rc1"
dbt_core_version = _get_dbt_core_version()
description = """The Snowflake adapter plugin for dbt"""

Expand Down

0 comments on commit 04afecc

Please sign in to comment.