Skip to content

Commit 2f5b452

Browse files
Bumping version to 1.9.4 and generate changelog
1 parent 52e3be3 commit 2f5b452

File tree

6 files changed

+21
-11
lines changed

6 files changed

+21
-11
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.3
2+
current_version = 1.9.4
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.4.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
## dbt-core 1.9.4 - April 02, 2025
2+
3+
### Fixes
4+
5+
- dbt retry does not respect --threads ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))
6+
7+
### Contributors
8+
- [@donjin-master](https://github.com/donjin-master) ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))

.changes/unreleased/Fixes-20240822-122132.yaml

-6
This file was deleted.

CHANGELOG.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,22 @@
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.3 - March 07, 2025
8+
## dbt-core 1.9.4 - April 02, 2025
99

1010
### Fixes
1111

12-
- Fix microbatch execution to not block main thread nor hang ([#11243](https://github.com/dbt-labs/dbt-core/issues/11243), [#11306](https://github.com/dbt-labs/dbt-core/issues/11306))
12+
- dbt retry does not respect --threads ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))
1313

14+
### Contributors
15+
- [@donjin-master](https://github.com/donjin-master) ([#10584](https://github.com/dbt-labs/dbt-core/issues/10584))
1416

1517

18+
## dbt-core 1.9.3 - March 07, 2025
19+
20+
### Fixes
21+
22+
- Fix microbatch execution to not block main thread nor hang ([#11243](https://github.com/dbt-labs/dbt-core/issues/11243), [#11306](https://github.com/dbt-labs/dbt-core/issues/11306))
23+
1624
## dbt-core 1.9.2 - January 29, 2025
1725

1826
### Fixes

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

0 commit comments

Comments
 (0)