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

Commit 6fc3719

Browse files
[create-pull-request] automated change (#943)
Co-authored-by: Github Build Bot <[email protected]>
1 parent 95a6f43 commit 6fc3719

File tree

7 files changed

+29
-16
lines changed

7 files changed

+29
-16
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.6.0
2+
current_version = 1.6.1
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.6.1.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## dbt-spark 1.6.1 - November 09, 2023
2+
3+
### Features
4+
5+
- Persist Column level comments when creating views ([#372](https://github.com/dbt-labs/dbt-spark/issues/372))
6+
7+
### Fixes
8+
9+
- Support new agate Integer type and empty seed test ([#935](https://github.com/dbt-labs/dbt-spark/issues/935))
10+
11+
### Contributors
12+
- [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372))

.changes/unreleased/Features-20230817-130731.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.changes/unreleased/Fixes-20231107-134141.yaml

Lines changed: 0 additions & 6 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
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.6.1 - November 09, 2023
9+
10+
### Features
11+
12+
- Persist Column level comments when creating views ([#372](https://github.com/dbt-labs/dbt-spark/issues/372))
13+
14+
### Fixes
15+
16+
- Support new agate Integer type and empty seed test ([#935](https://github.com/dbt-labs/dbt-spark/issues/935))
17+
18+
### Contributors
19+
- [@jurasan](https://github.com/jurasan) ([#372](https://github.com/dbt-labs/dbt-spark/issues/372))
20+
21+
822
## dbt-spark 1.6.0 - July 31, 2023
923

1024
### Features
@@ -48,7 +62,6 @@
4862
- [@flvndh](https://github.com/flvndh) ([#1013](https://github.com/dbt-labs/dbt-spark/issues/1013))
4963
- [@tim-steinkuhler](https://github.com/tim-steinkuhler) ([#302](https://github.com/dbt-labs/dbt-spark/issues/302))
5064

51-
5265
## Previous Releases
5366
For information on prior major and minor releases, see their changelogs:
5467
- [1.5](https://github.com/dbt-labs/dbt-spark/blob/1.5.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.6.0"
1+
version = "1.6.1"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def _get_dbt_core_version():
5050

5151

5252
package_name = "dbt-spark"
53-
package_version = "1.6.0"
53+
package_version = "1.6.1"
5454
dbt_core_version = _get_dbt_core_version()
5555
description = """The Apache Spark adapter plugin for dbt"""
5656

0 commit comments

Comments
 (0)