Skip to content

Commit 30da285

Browse files
[Automated] Merged prep-release/1.10.14_19243408641 into target 1.10.latest during release process
2 parents d5a22b4 + 75efbb7 commit 30da285

File tree

7 files changed

+24
-17
lines changed

7 files changed

+24
-17
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.13
2+
current_version = 1.10.14
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.14.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## dbt-core 1.10.14 - November 10, 2025
2+
3+
### Fixes
4+
5+
- Fix errors in partial parsing when working with versioned models ([#11869](https://github.com/dbt-labs/dbt-core/issues/11869))
6+
7+
### Under the Hood
8+
9+
- Reorganize jsonschemas directory structure ([#12121](https://github.com/dbt-labs/dbt-core/issues/12121))

.changes/unreleased/Fixes-20250925-212728.yaml

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

.changes/unreleased/Under the Hood-20251027-174415.yaml

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

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@
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.14 - November 10, 2025
9+
10+
### Fixes
11+
12+
- Fix errors in partial parsing when working with versioned models ([#11869](https://github.com/dbt-labs/dbt-core/issues/11869))
13+
14+
### Under the Hood
15+
16+
- Reorganize jsonschemas directory structure ([#12121](https://github.com/dbt-labs/dbt-core/issues/12121))
17+
18+
19+
820
## dbt-core 1.10.13 - September 25, 2025
921

1022
### Fixes
@@ -20,8 +32,6 @@
2032

2133
- Loosen dbt-semantic-interfaces lower pin to >=0.9.0 ([#12005](https://github.com/dbt-labs/dbt-core/issues/12005))
2234

23-
24-
2535
## dbt-core 1.10.12 - September 10, 2025
2636

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

0 commit comments

Comments
 (0)