diff --git a/.bumpversion.cfg b/.bumpversion.cfg index b069e8ee924..dce735bec71 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.1 +current_version = 1.8.2 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.2.md b/.changes/1.8.2.md new file mode 100644 index 00000000000..d59dfb750db --- /dev/null +++ b/.changes/1.8.2.md @@ -0,0 +1,9 @@ +## dbt-core 1.8.2 - June 05, 2024 + +### Features + +- Add --host flag to dbt docs serve, defaulting to '127.0.0.1' ([#10229](https://github.com/dbt-labs/dbt-core/issues/10229)) + +### Fixes + +- Fix: Order-insensitive unit test equality assertion for expected/actual with multiple nulls ([#10167](https://github.com/dbt-labs/dbt-core/issues/10167)) diff --git a/.changes/unreleased/Features-20240527-124405.yaml b/.changes/unreleased/Features-20240527-124405.yaml deleted file mode 100644 index 5dd2850609d..00000000000 --- a/.changes/unreleased/Features-20240527-124405.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Features -body: Add --host flag to dbt docs serve, defaulting to '127.0.0.1' -time: 2024-05-27T12:44:05.040843-04:00 -custom: - Author: michelleark - Issue: "10229" diff --git a/.changes/unreleased/Fixes-20240522-182855.yaml b/.changes/unreleased/Fixes-20240522-182855.yaml deleted file mode 100644 index b0963b4a6cc..00000000000 --- a/.changes/unreleased/Fixes-20240522-182855.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: 'Fix: Order-insensitive unit test equality assertion for expected/actual with - multiple nulls' -time: 2024-05-22T18:28:55.91733-04:00 -custom: - Author: michelleark - Issue: "10167" diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dee6a8df76..85d07f342f2 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,18 @@ - "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.2 - June 05, 2024 + +### Features + +- Add --host flag to dbt docs serve, defaulting to '127.0.0.1' ([#10229](https://github.com/dbt-labs/dbt-core/issues/10229)) + +### Fixes + +- Fix: Order-insensitive unit test equality assertion for expected/actual with multiple nulls ([#10167](https://github.com/dbt-labs/dbt-core/issues/10167)) + + + ## dbt-core 1.8.1 - May 22, 2024 ### Fixes @@ -21,8 +33,6 @@ - Explicitly bind to localhost in docs serve ([#10209](https://github.com/dbt-labs/dbt-core/issues/10209)) - - ## dbt-core 1.8.0 - May 09, 2024 ### Breaking Changes diff --git a/core/dbt/version.py b/core/dbt/version.py index 244d111d393..83ff9bba603 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.1" +__version__ = "1.8.2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index a64a515bade..dcba3cf2911 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.8.1" +package_version = "1.8.2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""