From 8f506a1b3d7956631d6dc933e1f01f556d62fa85 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Wed, 8 May 2024 00:36:54 +0000 Subject: [PATCH] Bumping version to 1.8.0rc2 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.8.0-rc2.md | 5 +++++ .../Under the Hood-20240506-145511.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.8.0-rc2.md rename .changes/{unreleased => 1.8.0}/Under the Hood-20240506-145511.yaml (100%) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7afd4865dc0..17c1e26f2c9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.0rc1 +current_version = 1.8.0rc2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.0-rc2.md b/.changes/1.8.0-rc2.md new file mode 100644 index 00000000000..b54af75721a --- /dev/null +++ b/.changes/1.8.0-rc2.md @@ -0,0 +1,5 @@ +## dbt-core 1.8.0-rc2 - May 08, 2024 + +### Under the Hood + +- Enable use of context in serialization ([#10093](https://github.com/dbt-labs/dbt-core/issues/10093)) diff --git a/.changes/unreleased/Under the Hood-20240506-145511.yaml b/.changes/1.8.0/Under the Hood-20240506-145511.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240506-145511.yaml rename to .changes/1.8.0/Under the Hood-20240506-145511.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index ec8957c3f4e..a43ea84245e 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.8.0-rc2 - May 08, 2024 + +### Under the Hood + +- Enable use of context in serialization ([#10093](https://github.com/dbt-labs/dbt-core/issues/10093)) + + + ## dbt-core 1.8.0-rc1 - May 02, 2024 ### Breaking Changes @@ -49,7 +57,6 @@ - [@barton996](https://github.com/barton996) ([#6891](https://github.com/dbt-labs/dbt-core/issues/6891)) - [@mjkanji](https://github.com/mjkanji) ([#9934](https://github.com/dbt-labs/dbt-core/issues/9934)) - ## dbt-core 1.8.0-b3 - April 18, 2024 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index 398133dc604..84436b70417 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -229,5 +229,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.8.0rc1" +__version__ = "1.8.0rc2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index ef1743fe884..d5eee6f32a4 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.8.0rc1" +package_version = "1.8.0rc2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""