Skip to content

Commit 57fdfb5

Browse files
Bumping version to 1.10.3 and generate changelog
1 parent ab50b5d commit 57fdfb5

File tree

9 files changed

+34
-29
lines changed

9 files changed

+34
-29
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.2
2+
current_version = 1.10.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.10.3.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
## dbt-core 1.10.3 - July 02, 2025
2+
3+
### Features
4+
5+
- Support loaded_at_query and loaded_at_field on source and table configs ([#11659](https://github.com/dbt-labs/dbt-core/issues/11659))
6+
- Begin validating configs from model sql files ([#11727](https://github.com/dbt-labs/dbt-core/issues/11727))
7+
8+
### Fixes
9+
10+
- Bump dbt-common to 1.25.0 to access WarnErrorOptionsV2 ([#11755](https://github.com/dbt-labs/dbt-core/issues/11755))
11+
12+
### Dependencies
13+
14+
- Bump dbt-common minimum to 1.25.1 ([#11789](https://github.com/dbt-labs/dbt-core/issues/11789))

.changes/unreleased/Dependencies-20250702-144720.yaml

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

.changes/unreleased/Features-20250623-113130.yaml

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

.changes/unreleased/Features-20250625-151818.yaml

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

.changes/unreleased/Fixes-20250624-091258.yaml

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

CHANGELOG.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@
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.3 - July 02, 2025
9+
10+
### Features
11+
12+
- Support loaded_at_query and loaded_at_field on source and table configs ([#11659](https://github.com/dbt-labs/dbt-core/issues/11659))
13+
- Begin validating configs from model sql files ([#11727](https://github.com/dbt-labs/dbt-core/issues/11727))
14+
15+
### Fixes
16+
17+
- Bump dbt-common to 1.25.0 to access WarnErrorOptionsV2 ([#11755](https://github.com/dbt-labs/dbt-core/issues/11755))
18+
19+
### Dependencies
20+
21+
- Bump dbt-common minimum to 1.25.1 ([#11789](https://github.com/dbt-labs/dbt-core/issues/11789))
22+
23+
24+
825
## dbt-core 1.10.2 - June 20, 2025
926

1027
### Features
@@ -15,8 +32,6 @@
1532

1633
- Allow for either pydantic v1 and v2 ([#11634](https://github.com/dbt-labs/dbt-core/issues/11634))
1734

18-
19-
2035
## dbt-core 1.10.1 - June 16, 2025
2136

2237
### Dependencies

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

0 commit comments

Comments
 (0)