Skip to content

Commit a9330b8

Browse files
Bumping version to 1.9.6 and generate changelog
1 parent e192609 commit a9330b8

File tree

7 files changed

+24
-17
lines changed

7 files changed

+24
-17
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.5
2+
current_version = 1.9.6
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.6.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## dbt-core 1.9.6 - May 30, 2025
2+
3+
### Features
4+
5+
- Support config on columns ([#11651](https://github.com/dbt-labs/dbt-core/issues/11651))
6+
7+
### Fixes
8+
9+
- Fix source freshness set via config to handle explicit nulls ([#11685](https://github.com/dbt-labs/dbt-core/issues/11685))

.changes/unreleased/Features-20250526-112259.yaml

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

.changes/unreleased/Fixes-20250530-005804.yaml

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

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,23 @@
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-core/blob/main/CONTRIBUTING.md#adding-changelog-entry)
77

8-
## dbt-core 1.9.5 - May 28, 2025
8+
## dbt-core 1.9.6 - May 30, 2025
9+
10+
### Features
11+
12+
- Support config on columns ([#11651](https://github.com/dbt-labs/dbt-core/issues/11651))
913

1014
### Fixes
1115

12-
- Add freshness config to sources ([#11506](https://github.com/dbt-labs/dbt-core/issues/11506))
16+
- Fix source freshness set via config to handle explicit nulls ([#11685](https://github.com/dbt-labs/dbt-core/issues/11685))
17+
1318

1419

20+
## dbt-core 1.9.5 - May 28, 2025
21+
22+
### Fixes
23+
24+
- Add freshness config to sources ([#11506](https://github.com/dbt-labs/dbt-core/issues/11506))
1525

1626
## dbt-core 1.9.4 - April 02, 2025
1727

core/dbt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,5 +226,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
226226
yield plugin_name
227227

228228

229-
__version__ = "1.9.5"
229+
__version__ = "1.9.6"
230230
installed = get_installed_version()

core/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

2727
package_name = "dbt-core"
28-
package_version = "1.9.5"
28+
package_version = "1.9.6"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

0 commit comments

Comments
 (0)