Skip to content

Commit 75aeafe

Browse files
[Automated] Merged prep-release/1.9.1_12358580707 into target 1.9.latest during release process
2 parents 7fdd92f + cffe8a3 commit 75aeafe

10 files changed

+29
-34
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.9.0
2+
current_version = 1.9.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.9.1.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## dbt-core 1.9.1 - December 16, 2024
2+
3+
### Fixes
4+
5+
- update adapter version messages ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
6+
- Fix debug log messages for microbatch batch execution information ([#11111](https://github.com/dbt-labs/dbt-core/issues/11111))
7+
- Fix running of extra "last" batch when there is only one batch ([#11112](https://github.com/dbt-labs/dbt-core/issues/11112))
8+
- Fix interpretation of `PartialSuccess` to result in non-zero exit code ([#11114](https://github.com/dbt-labs/dbt-core/issues/11114))
9+
- Warn about invalid usages of `concurrent_batches` config ([#11122](https://github.com/dbt-labs/dbt-core/issues/11122))
10+
11+
### Contributors
12+
- [@dave-connors-3](https://github.com/dave-connors-3) ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))

.changes/unreleased/Fixes-20241025-104339.yaml

-6
This file was deleted.

.changes/unreleased/Fixes-20241209-113806.yaml

-6
This file was deleted.

.changes/unreleased/Fixes-20241209-133317.yaml

-6
This file was deleted.

.changes/unreleased/Fixes-20241209-150711.yaml

-6
This file was deleted.

.changes/unreleased/Fixes-20241212-113611.yaml

-6
This file was deleted.

CHANGELOG.md

+14-1
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-core/blob/main/CONTRIBUTING.md#adding-changelog-entry)
77

8+
## dbt-core 1.9.1 - December 16, 2024
9+
10+
### Fixes
11+
12+
- update adapter version messages ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
13+
- Fix debug log messages for microbatch batch execution information ([#11111](https://github.com/dbt-labs/dbt-core/issues/11111))
14+
- Fix running of extra "last" batch when there is only one batch ([#11112](https://github.com/dbt-labs/dbt-core/issues/11112))
15+
- Fix interpretation of `PartialSuccess` to result in non-zero exit code ([#11114](https://github.com/dbt-labs/dbt-core/issues/11114))
16+
- Warn about invalid usages of `concurrent_batches` config ([#11122](https://github.com/dbt-labs/dbt-core/issues/11122))
17+
18+
### Contributors
19+
- [@dave-connors-3](https://github.com/dave-connors-3) ([#10230](https://github.com/dbt-labs/dbt-core/issues/10230))
20+
21+
822
## dbt-core 1.9.0 - December 09, 2024
923

1024
### Breaking Changes
@@ -196,7 +210,6 @@
196210
- [@tsturge](https://github.com/tsturge) ([#9109](https://github.com/dbt-labs/dbt-core/issues/9109), [#10540](https://github.com/dbt-labs/dbt-core/issues/10540))
197211
- [@ttusing](https://github.com/ttusing) ([#10434](https://github.com/dbt-labs/dbt-core/issues/10434))
198212

199-
200213
## Previous Releases
201214

202215
For information on prior major and minor releases, see their changelogs:

core/dbt/version.py

+1-1
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.0"
229+
__version__ = "1.9.1"
230230
installed = get_installed_version()

core/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

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

0 commit comments

Comments
 (0)