Skip to content

Commit

Permalink
Bumping version to 1.4.0rc1 and generate changelog (#587)
Browse files Browse the repository at this point in the history
* Bumping version to 1.4.0rc1 and generate CHANGELOG

* add @1.4.latest

Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com>
Co-authored-by: Colin <colin.rogers@dbtlabs.com>
  • Loading branch information
3 people authored Jan 11, 2023
1 parent 94148f6 commit 8e089e4
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 5 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.4.0b1
current_version = 1.4.0rc1
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
8 changes: 8 additions & 0 deletions .changes/1.4.0-rc1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## dbt-spark 1.4.0-rc1 - January 11, 2023
### Fixes
- Added escape_single_quotes macro as Spark/Databricks uses a single backslash instead of a single quote ([#572](https://github.com/dbt-labs/dbt-spark/issues/572), [#573](https://github.com/dbt-labs/dbt-spark/pull/573))
### Under the Hood
- Rename exceptions to match dbt-core. ([#557](https://github.com/dbt-labs/dbt-spark/issues/557), [#585](https://github.com/dbt-labs/dbt-spark/pull/585))

### Contributors
- [@graciegoheen](https://github.com/graciegoheen) ([#573](https://github.com/dbt-labs/dbt-spark/pull/573))
File renamed without changes.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
- Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases.
- "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-spark/blob/main/CONTRIBUTING.md#adding-changelog-entry)
## dbt-spark 1.4.0-rc1 - January 11, 2023
### Fixes
- Added escape_single_quotes macro as Spark/Databricks uses a single backslash instead of a single quote ([#572](https://github.com/dbt-labs/dbt-spark/issues/572), [#573](https://github.com/dbt-labs/dbt-spark/pull/573))
### Under the Hood
- Rename exceptions to match dbt-core. ([#557](https://github.com/dbt-labs/dbt-spark/issues/557), [#585](https://github.com/dbt-labs/dbt-spark/pull/585))

### Contributors
- [@graciegoheen](https://github.com/graciegoheen) ([#573](https://github.com/dbt-labs/dbt-spark/pull/573))
## dbt-spark 1.4.0-b1 - December 15, 2022
### Features
- incremental predicates ([#435](https://github.com/dbt-labs/dbt-spark/issues/435), [#436](https://github.com/dbt-labs/dbt-spark/pull/436))
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/spark/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "1.4.0b1"
version = "1.4.0rc1"
4 changes: 2 additions & 2 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# install latest changes in dbt-core
# TODO: how to automate switching from develop to version branches?
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-core&subdirectory=core
git+https://github.com/dbt-labs/dbt-core.git#egg=dbt-tests-adapter&subdirectory=tests/adapter
git+https://github.com/dbt-labs/dbt-core.git@1.4.latest#egg=dbt-core&subdirectory=core
git+https://github.com/dbt-labs/dbt-core.git@1.4.latest#egg=dbt-tests-adapter&subdirectory=tests/adapter



Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def _get_dbt_core_version():


package_name = "dbt-spark"
package_version = "1.4.0b1"
package_version = "1.4.0rc1"
dbt_core_version = _get_dbt_core_version()
description = """The Apache Spark adapter plugin for dbt"""

Expand Down

0 comments on commit 8e089e4

Please sign in to comment.