diff --git a/.bumpversion.cfg b/.bumpversion.cfg index e0b27859614..7d2afb98762 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.8.4 +current_version = 1.8.5 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.8.5.md b/.changes/1.8.5.md new file mode 100644 index 00000000000..4492f9a9253 --- /dev/null +++ b/.changes/1.8.5.md @@ -0,0 +1,5 @@ +## dbt-core 1.8.5 - August 07, 2024 + +### Fixes + +- respect --quiet and --warn-error-options for flag deprecations ([#10105](https://github.com/dbt-labs/dbt-core/issues/10105)) diff --git a/.changes/unreleased/Fixes-20240806-194843.yaml b/.changes/unreleased/Fixes-20240806-194843.yaml deleted file mode 100644 index 7eb5a4bd8d8..00000000000 --- a/.changes/unreleased/Fixes-20240806-194843.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: respect --quiet and --warn-error-options for flag deprecations -time: 2024-08-06T19:48:43.399453-04:00 -custom: - Author: michelleark - Issue: "10105" diff --git a/CHANGELOG.md b/CHANGELOG.md index c95abdb1c6a..5a956077ae4 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.5 - August 07, 2024 + +### Fixes + +- respect --quiet and --warn-error-options for flag deprecations ([#10105](https://github.com/dbt-labs/dbt-core/issues/10105)) + + + ## dbt-core 1.8.4 - July 18, 2024 ### Fixes @@ -14,8 +22,6 @@ - CLI flags should take precedence over env var flags ([#10304](https://github.com/dbt-labs/dbt-core/issues/10304)) - Fix error constructing warn_error_options ([#10452](https://github.com/dbt-labs/dbt-core/issues/10452)) - - ## dbt-core 1.8.3 - June 20, 2024 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index 3af22ff70cb..a3f46b5a7e3 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.4" +__version__ = "1.8.5" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index ea1a7d60c64..91ab683a0c7 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.8.4" +package_version = "1.8.5" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications."""