From 8248d1eb535ad5ed8f08b85364383731630224f4 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Mon, 7 Oct 2024 10:50:33 +0000 Subject: [PATCH] Bumping version to 1.9.0b2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.9.0-b2.md | 1 + CHANGELOG.md | 5 ++++- core/dbt/version.py | 2 +- core/setup.py | 2 +- 5 files changed, 8 insertions(+), 4 deletions(-) create mode 100644 .changes/1.9.0-b2.md diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 9fa50eba62..048324090e 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.9.0b1 +current_version = 1.9.0b2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.9.0-b2.md b/.changes/1.9.0-b2.md new file mode 100644 index 0000000000..5df2eac492 --- /dev/null +++ b/.changes/1.9.0-b2.md @@ -0,0 +1 @@ +## dbt-core 1.9.0-b2 - October 07, 2024 diff --git a/CHANGELOG.md b/CHANGELOG.md index e9e505c6c1..82d6bfb7cd 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ - "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-b2 - October 07, 2024 + + + ## dbt-core 1.9.0-b1 - October 01, 2024 ### Breaking Changes @@ -142,7 +146,6 @@ - [@scottgigante,nevdelap](https://github.com/scottgigante,nevdelap) ([#8774](https://github.com/dbt-labs/dbt-core/issues/8774)) - [@ttusing](https://github.com/ttusing) ([#10434](https://github.com/dbt-labs/dbt-core/issues/10434)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: diff --git a/core/dbt/version.py b/core/dbt/version.py index 4ae62762c0..4413a9e053 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.0b1" +__version__ = "1.9.0b2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 7cb18289b9..f29832dc59 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.9.0b1" +package_version = "1.9.0b2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""