Skip to content

Commit 333d600

Browse files
committedDec 2, 2024
Bumping version to 1.9.0rc2 and generate changelog
1 parent 61b6cb3 commit 333d600

File tree

6 files changed

+16
-4
lines changed

6 files changed

+16
-4
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.0rc1
2+
current_version = 1.9.0rc2
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.0-rc2.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## dbt-core 1.9.0-rc2 - December 02, 2024
2+
3+
### Features
4+
5+
- Add `batch` context object to model jinja context ([#11025](https://github.com/dbt-labs/dbt-core/issues/11025))

‎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.0-rc2 - December 02, 2024
9+
10+
### Features
11+
12+
- Add `batch` context object to model jinja context ([#11025](https://github.com/dbt-labs/dbt-core/issues/11025))
13+
14+
15+
816
## dbt-core 1.9.0-rc1 - November 25, 2024
917

1018
### Features
@@ -41,7 +49,6 @@
4149
- [@devmessias](https://github.com/devmessias) ([#8520](https://github.com/dbt-labs/dbt-core/issues/8520), [#10880](https://github.com/dbt-labs/dbt-core/issues/10880), [#10528](https://github.com/dbt-labs/dbt-core/issues/10528), [#10623](https://github.com/dbt-labs/dbt-core/issues/10623))
4250
- [@tsturge](https://github.com/tsturge) ([#9109](https://github.com/dbt-labs/dbt-core/issues/9109), [#10540](https://github.com/dbt-labs/dbt-core/issues/10540))
4351

44-
4552
## dbt-core 1.9.0-b4 - November 06, 2024
4653

4754
### Features

‎core/dbt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -231,5 +231,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
231231
yield plugin_name
232232

233233

234-
__version__ = "1.9.0rc1"
234+
__version__ = "1.9.0rc2"
235235
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.0rc1"
28+
package_version = "1.9.0rc2"
2929
description = """With dbt, data analysts and engineers can build analytics \
3030
the way engineers build applications."""
3131

0 commit comments

Comments
 (0)