diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ef31dd28540..681e8141b7d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.6.0b5 +current_version = 1.6.0b6 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.6.0-b6.md b/.changes/1.6.0-b6.md new file mode 100644 index 00000000000..84bc984c0d1 --- /dev/null +++ b/.changes/1.6.0-b6.md @@ -0,0 +1,6 @@ +## dbt-core 1.6.0-b6 - June 23, 2023 + +### Fixes + +- Allow semantic model measure exprs to be defined with ints and bools in yaml ([#7865](https://github.com/dbt-labs/dbt-core/issues/7865)) +- Update `use_discrete_percentile` and `use_approximate_percentile` to be non optional and default to `False` ([#7866](https://github.com/dbt-labs/dbt-core/issues/7866)) diff --git a/.changes/unreleased/Fixes-20230614-134933.yaml b/.changes/1.6.0/Fixes-20230614-134933.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230614-134933.yaml rename to .changes/1.6.0/Fixes-20230614-134933.yaml diff --git a/.changes/unreleased/Fixes-20230614-145954.yaml b/.changes/1.6.0/Fixes-20230614-145954.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230614-145954.yaml rename to .changes/1.6.0/Fixes-20230614-145954.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f79789dc9d..1ecda649411 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ - "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.6.0-b6 - June 23, 2023 + +### Fixes + +- Allow semantic model measure exprs to be defined with ints and bools in yaml ([#7865](https://github.com/dbt-labs/dbt-core/issues/7865)) +- Update `use_discrete_percentile` and `use_approximate_percentile` to be non optional and default to `False` ([#7866](https://github.com/dbt-labs/dbt-core/issues/7866)) + + + ## dbt-core 1.6.0-b5 - June 22, 2023 ### Features @@ -34,8 +43,6 @@ - Bump mypy from 0.981 to 1.0.1 ([#7027](https://github.com/dbt-labs/dbt-core/pull/7027)) - - ## dbt-core 1.6.0-b4 - June 13, 2023 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index aff84d65f12..9efaf3f3c19 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -232,5 +232,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.6.0b5" +__version__ = "1.6.0b6" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index a79cecaaa16..84753394728 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.6.0b5" +package_version = "1.6.0b6" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index e3e588702e2..0adfb521ebd 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,12 +14,12 @@ FROM --platform=$build_for python:3.11.2-slim-bullseye as base # N.B. The refs updated automagically every release via bumpversion # N.B. dbt-postgres is currently found in the core codebase so a value of dbt-core@ is correct -ARG dbt_core_ref=dbt-core@v1.6.0b5 -ARG dbt_postgres_ref=dbt-core@v1.6.0b5 -ARG dbt_redshift_ref=dbt-redshift@v1.6.0b5 -ARG dbt_bigquery_ref=dbt-bigquery@v1.6.0b5 -ARG dbt_snowflake_ref=dbt-snowflake@v1.6.0b5 -ARG dbt_spark_ref=dbt-spark@v1.6.0b5 +ARG dbt_core_ref=dbt-core@v1.6.0b6 +ARG dbt_postgres_ref=dbt-core@v1.6.0b6 +ARG dbt_redshift_ref=dbt-redshift@v1.6.0b6 +ARG dbt_bigquery_ref=dbt-bigquery@v1.6.0b6 +ARG dbt_snowflake_ref=dbt-snowflake@v1.6.0b6 +ARG dbt_spark_ref=dbt-spark@v1.6.0b6 # special case args ARG dbt_spark_version=all ARG dbt_third_party diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index da9f11e349d..7b985e24b5c 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.6.0b5" +version = "1.6.0b6" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 1b2e26e7a39..a5b468f2961 100644 --- a/plugins/postgres/setup.py +++ b/plugins/postgres/setup.py @@ -41,7 +41,7 @@ def _dbt_psycopg2_name(): package_name = "dbt-postgres" -package_version = "1.6.0b5" +package_version = "1.6.0b6" description = """The postgres adapter plugin for dbt (data build tool)""" this_directory = os.path.abspath(os.path.dirname(__file__)) diff --git a/tests/adapter/dbt/tests/adapter/__version__.py b/tests/adapter/dbt/tests/adapter/__version__.py index da9f11e349d..7b985e24b5c 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.6.0b5" +version = "1.6.0b6" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 732661b4261..9a0f6436d55 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.6.0b5" +package_version = "1.6.0b6" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))