Skip to content

Commit 14e176b

Browse files
Bumping version to 1.9.3 and generate changelog
1 parent b529d73 commit 14e176b

File tree

6 files changed

+16
-10
lines changed

6 files changed

+16
-10
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.2
2+
current_version = 1.9.3
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.3.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## dbt-core 1.9.3 - March 07, 2025
2+
3+
### Fixes
4+
5+
- 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))

.changes/unreleased/Fixes-20250303-131440.yaml

-6
This file was deleted.

CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@
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
9+
10+
### Fixes
11+
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))
13+
14+
15+
816
## dbt-core 1.9.2 - January 29, 2025
917

1018
### Fixes
@@ -18,7 +26,6 @@
1826
### Contributors
1927
- [@internetcoffeephone](https://github.com/internetcoffeephone) ([#10556](https://github.com/dbt-labs/dbt-core/issues/10556), [#11098](https://github.com/dbt-labs/dbt-core/issues/11098))
2028

21-
2229
## dbt-core 1.9.1 - December 16, 2024
2330

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

0 commit comments

Comments
 (0)