Skip to content

Commit 8f506a1

Browse files
Bumping version to 1.8.0rc2 and generate changelog
1 parent 4034327 commit 8f506a1

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.8.0rc1
2+
current_version = 1.8.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.8.0-rc2.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## dbt-core 1.8.0-rc2 - May 08, 2024
2+
3+
### Under the Hood
4+
5+
- Enable use of context in serialization ([#10093](https://github.com/dbt-labs/dbt-core/issues/10093))

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.8.0-rc2 - May 08, 2024
9+
10+
### Under the Hood
11+
12+
- Enable use of context in serialization ([#10093](https://github.com/dbt-labs/dbt-core/issues/10093))
13+
14+
15+
816
## dbt-core 1.8.0-rc1 - May 02, 2024
917

1018
### Breaking Changes
@@ -49,7 +57,6 @@
4957
- [@barton996](https://github.com/barton996) ([#6891](https://github.com/dbt-labs/dbt-core/issues/6891))
5058
- [@mjkanji](https://github.com/mjkanji) ([#9934](https://github.com/dbt-labs/dbt-core/issues/9934))
5159

52-
5360
## dbt-core 1.8.0-b3 - April 18, 2024
5461

5562
### Features

core/dbt/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -229,5 +229,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
229229
yield plugin_name
230230

231231

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

0 commit comments

Comments
 (0)