Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.

Commit 585a096

Browse files
[Automated] Merged prep-release/1.9.0rc1_12126848290 into target 1.9.latest during release process
2 parents 07f0f52 + 10574a1 commit 585a096

File tree

8 files changed

+37
-4
lines changed

8 files changed

+37
-4
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.0b1
2+
current_version = 1.9.0rc1
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.9.0-rc1.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## dbt-spark 1.9.0-rc1 - December 02, 2024
2+
3+
### Breaking Changes
4+
5+
- Drop support for Python 3.8 ([#1121](https://github.com/dbt-labs/dbt-spark/issues/1121))
6+
7+
### Features
8+
9+
- Enable setting current value of dbt_valid_to ([#1112](https://github.com/dbt-labs/dbt-spark/issues/1112))
10+
11+
### Under the Hood
12+
13+
- Isolating distribution testing ([#1069](https://github.com/dbt-labs/dbt-spark/issues/1069))
14+
15+
### Contributors
16+
- [@leahwicz](https://github.com/leahwicz) ([#1069](https://github.com/dbt-labs/dbt-spark/issues/1069))

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@
55
- "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version.
66
- 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)
77

8+
## dbt-spark 1.9.0-rc1 - December 02, 2024
9+
10+
### Breaking Changes
11+
12+
- Drop support for Python 3.8 ([#1121](https://github.com/dbt-labs/dbt-spark/issues/1121))
13+
14+
### Features
15+
16+
- Enable setting current value of dbt_valid_to ([#1112](https://github.com/dbt-labs/dbt-spark/issues/1112))
17+
18+
### Under the Hood
19+
20+
- Isolating distribution testing ([#1069](https://github.com/dbt-labs/dbt-spark/issues/1069))
21+
22+
### Contributors
23+
- [@leahwicz](https://github.com/leahwicz) ([#1069](https://github.com/dbt-labs/dbt-spark/issues/1069))
24+
25+
826
## dbt-spark 1.9.0-b1 - October 01, 2024
927

1028
### Features
@@ -37,7 +55,6 @@
3755
- [@jpoley](https://github.com/jpoley) ([#1092](https://github.com/dbt-labs/dbt-spark/issues/1092))
3856
- [@nilan3](https://github.com/nilan3) ([#1092](https://github.com/dbt-labs/dbt-spark/issues/1092))
3957

40-
4158
## Previous Releases
4259
For information on prior major and minor releases, see their changelogs:
4360
- [1.6](https://github.com/dbt-labs/dbt-spark/blob/1.6.latest/CHANGELOG.md)

dbt/adapters/spark/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "1.9.0b1"
1+
version = "1.9.0rc1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _get_plugin_version_dict():
4141

4242

4343
package_name = "dbt-spark"
44-
package_version = "1.9.0b1"
44+
package_version = "1.9.0rc1"
4545
description = """The Apache Spark adapter plugin for dbt"""
4646

4747
odbc_extras = ["pyodbc~=5.1.0"]

0 commit comments

Comments
 (0)