Skip to content

Commit 4017802

Browse files
Bumping version to 1.11.0b3 and generate changelog
1 parent 17a8816 commit 4017802

File tree

8 files changed

+26
-5
lines changed

8 files changed

+26
-5
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.11.0b2
2+
current_version = 1.11.0b3
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.11.0-b3.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
## dbt-core 1.11.0-b3 - October 07, 2025
2+
3+
### Features
4+
5+
- Support function nodes for unit tested models ([#12024](https://github.com/dbt-labs/dbt-core/issues/12024))
6+
7+
### Fixes
8+
9+
- Fix case of successful function status in logs ([#12075](https://github.com/dbt-labs/dbt-core/issues/12075))
10+
- Fix `ref` support in function nodes ([#12076](https://github.com/dbt-labs/dbt-core/issues/12076))

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,26 @@
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.11.0-b3 - October 07, 2025
9+
10+
### Features
11+
12+
- Support function nodes for unit tested models ([#12024](https://github.com/dbt-labs/dbt-core/issues/12024))
13+
14+
### Fixes
15+
16+
- Fix case of successful function status in logs ([#12075](https://github.com/dbt-labs/dbt-core/issues/12075))
17+
- Fix `ref` support in function nodes ([#12076](https://github.com/dbt-labs/dbt-core/issues/12076))
18+
19+
20+
821
## dbt-core 1.11.0-b2 - October 02, 2025
922

1023
### Fixes
1124

1225
- Fix property names of function nodes (arguments.data_type, returns, returns.data_type) ([#12064](https://github.com/dbt-labs/dbt-core/issues/12064))
1326
- Exclude `functions` from being filtered by `empty` and `event_time` ([#12066](https://github.com/dbt-labs/dbt-core/issues/12066))
1427

15-
16-
1728
## dbt-core 1.11.0-b1 - October 01, 2025
1829

1930
### Features

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.11.0b2"
229+
__version__ = "1.11.0b3"
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.11.0b2"
28+
package_version = "1.11.0b3"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

0 commit comments

Comments
 (0)