Skip to content

Commit 0a4e33f

Browse files
Bumping version to 1.10.18 and generate changelog
1 parent 926ebf0 commit 0a4e33f

File tree

8 files changed

+37
-23
lines changed

8 files changed

+37
-23
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.10.17
2+
current_version = 1.10.18
33
parse = (?P<major>[\d]+) # major version number
44
\.(?P<minor>[\d]+) # minor version number
55
\.(?P<patch>[\d]+) # patch version number

.changes/1.10.18.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
## dbt-core 1.10.18 - January 06, 2026
2+
3+
### Features
4+
5+
- Implement config.meta_get and config.meta_require ([#12012](https://github.com/dbt-labs/dbt-core/issues/12012))
6+
7+
### Fixes
8+
9+
- Adds omitted return statement to RuntimeConfigObject.meta_require method ([#12288](https://github.com/dbt-labs/dbt-core/issues/12288))
10+
11+
### Under the Hood
12+
13+
- Bump lower bound for dbt-common to 1.37.2 ([#12284](https://github.com/dbt-labs/dbt-core/issues/12284))
14+
15+
### Contributors
16+
- [@mjsqu](https://github.com/mjsqu) ([#12288](https://github.com/dbt-labs/dbt-core/issues/12288))

.changes/unreleased/Features-20251210-202001.yaml

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

.changes/unreleased/Fixes-20251217-002813.yaml

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

.changes/unreleased/Under the Hood-20251215-155046.yaml

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

CHANGELOG.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,29 @@
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.10.17 - December 20, 2025
8+
## dbt-core 1.10.18 - January 06, 2026
9+
10+
### Features
11+
12+
- Implement config.meta_get and config.meta_require ([#12012](https://github.com/dbt-labs/dbt-core/issues/12012))
913

1014
### Fixes
1115

12-
- Upper bound sqlmesh to <0.5.5 ([#12311](https://github.com/dbt-labs/dbt-core/issues/12311))
16+
- Adds omitted return statement to RuntimeConfigObject.meta_require method ([#12288](https://github.com/dbt-labs/dbt-core/issues/12288))
17+
18+
### Under the Hood
1319

20+
- Bump lower bound for dbt-common to 1.37.2 ([#12284](https://github.com/dbt-labs/dbt-core/issues/12284))
1421

22+
### Contributors
23+
- [@mjsqu](https://github.com/mjsqu) ([#12288](https://github.com/dbt-labs/dbt-core/issues/12288))
24+
25+
26+
## dbt-core 1.10.17 - December 20, 2025
27+
28+
### Fixes
29+
30+
- Upper bound sqlmesh to <0.5.5 ([#12311](https://github.com/dbt-labs/dbt-core/issues/12311))
1531

1632
## dbt-core 1.10.16 - December 16, 2025
1733

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

0 commit comments

Comments
 (0)