From 333d600a9508dcadf77ec595d2aeaf6c658732cb Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Mon, 2 Dec 2024 14:25:20 +0000 Subject: [PATCH] Bumping version to 1.9.0rc2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.9.0-rc2.md | 5 +++++ .../{unreleased => 1.9.0}/Features-20241121-125630.yaml | 0 CHANGELOG.md | 9 ++++++++- core/dbt/version.py | 2 +- core/setup.py | 2 +- 6 files changed, 16 insertions(+), 4 deletions(-) create mode 100644 .changes/1.9.0-rc2.md rename .changes/{unreleased => 1.9.0}/Features-20241121-125630.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 40d01e31424..a864eed05ca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0rc1 +current_version = 1.9.0rc2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.9.0-rc2.md b/.changes/1.9.0-rc2.md new file mode 100644 index 00000000000..e8492f38569 --- /dev/null +++ b/.changes/1.9.0-rc2.md @@ -0,0 +1,5 @@ +## dbt-core 1.9.0-rc2 - December 02, 2024 + +### Features + +- Add `batch` context object to model jinja context ([#11025](https://github.com/dbt-labs/dbt-core/issues/11025)) diff --git a/.changes/unreleased/Features-20241121-125630.yaml b/.changes/1.9.0/Features-20241121-125630.yaml similarity index 100% rename from .changes/unreleased/Features-20241121-125630.yaml rename to .changes/1.9.0/Features-20241121-125630.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index e85fa3a1440..66009fa426c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ - "Breaking changes" listed under a version may require action from end users or external maintainers when upgrading to that version. - 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) +## dbt-core 1.9.0-rc2 - December 02, 2024 + +### Features + +- Add `batch` context object to model jinja context ([#11025](https://github.com/dbt-labs/dbt-core/issues/11025)) + + + ## dbt-core 1.9.0-rc1 - November 25, 2024 ### Features @@ -41,7 +49,6 @@ - [@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)) - [@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)) - ## dbt-core 1.9.0-b4 - November 06, 2024 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index 7d89310d18e..c51b7b22c72 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -231,5 +231,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.9.0rc1" +__version__ = "1.9.0rc2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 3c3fee03ef4..9ed416e52ea 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.9.0rc1" +package_version = "1.9.0rc2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""