diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f9e1db2f813..3b5bfc728b3 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.5.0 +current_version = 1.5.1rc1 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.5.1-rc1.md b/.changes/1.5.1-rc1.md new file mode 100644 index 00000000000..10ec59c8ff8 --- /dev/null +++ b/.changes/1.5.1-rc1.md @@ -0,0 +1,13 @@ +## dbt-core 1.5.1-rc1 - May 12, 2023 + +### Fixes + +- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) +- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) +- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) +- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) +- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) +- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) + +### Contributors +- [@thomasgjerdekog](https://github.com/thomasgjerdekog) ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) diff --git a/.changes/unreleased/Fixes-20230414-163642.yaml b/.changes/1.5.1/Fixes-20230414-163642.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230414-163642.yaml rename to .changes/1.5.1/Fixes-20230414-163642.yaml diff --git a/.changes/unreleased/Fixes-20230505-132545.yaml b/.changes/1.5.1/Fixes-20230505-132545.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230505-132545.yaml rename to .changes/1.5.1/Fixes-20230505-132545.yaml diff --git a/.changes/unreleased/Fixes-20230506-173315.yaml b/.changes/1.5.1/Fixes-20230506-173315.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230506-173315.yaml rename to .changes/1.5.1/Fixes-20230506-173315.yaml diff --git a/.changes/unreleased/Fixes-20230508-042707.yaml b/.changes/1.5.1/Fixes-20230508-042707.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230508-042707.yaml rename to .changes/1.5.1/Fixes-20230508-042707.yaml diff --git a/.changes/unreleased/Fixes-20230508-142518.yaml b/.changes/1.5.1/Fixes-20230508-142518.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230508-142518.yaml rename to .changes/1.5.1/Fixes-20230508-142518.yaml diff --git a/.changes/unreleased/Fixes-20230509-123159.yaml b/.changes/1.5.1/Fixes-20230509-123159.yaml similarity index 100% rename from .changes/unreleased/Fixes-20230509-123159.yaml rename to .changes/1.5.1/Fixes-20230509-123159.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ea04f117a0..f7a39a500bf 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,21 @@ - "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.5.1-rc1 - May 12, 2023 + +### Fixes + +- fix typo in unpacking statically parsed ref ([#7364](https://github.com/dbt-labs/dbt-core/issues/7364)) +- Fix inverted `--print/--no-print` flag ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) +- Back-compat for previous return type of 'collect_freshness' macro ([#7489](https://github.com/dbt-labs/dbt-core/issues/7489)) +- print model version in dbt show if specified ([#7407](https://github.com/dbt-labs/dbt-core/issues/7407)) +- Do not rewrite manifest.json during 'docs serve' command ([#7553](https://github.com/dbt-labs/dbt-core/issues/7553)) +- Pin protobuf to greater than 4.0.0 ([#7565](https://github.com/dbt-labs/dbt-core/issues/7565)) + +### Contributors +- [@thomasgjerdekog](https://github.com/thomasgjerdekog) ([#7517](https://github.com/dbt-labs/dbt-core/issues/7517)) + + ## dbt-core 1.5.0 - April 27, 2023 ### Breaking Changes @@ -195,7 +210,6 @@ - [@sungchun12](https://github.com/sungchun12) ([#6079](https://github.com/dbt-labs/dbt-core/issues/6079)) - [@z3z1ma](https://github.com/z3z1ma) ([#6598](https://github.com/dbt-labs/dbt-core/issues/6598)) - ## Previous Releases For information on prior major and minor releases, see their changelogs: diff --git a/core/dbt/version.py b/core/dbt/version.py index 6c74f8608e5..aa1f1804f9b 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.5.0" +__version__ = "1.5.1rc1" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index abb9d9db37e..d06a7e3529a 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.5.0" +package_version = "1.5.1rc1" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 4110da0dcf8..306247f5542 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.5.0 -ARG dbt_postgres_ref=dbt-core@v1.5.0 -ARG dbt_redshift_ref=dbt-redshift@v1.5.0 -ARG dbt_bigquery_ref=dbt-bigquery@v1.5.0 -ARG dbt_snowflake_ref=dbt-snowflake@v1.5.0 -ARG dbt_spark_ref=dbt-spark@v1.5.0 +ARG dbt_core_ref=dbt-core@v1.5.1rc1 +ARG dbt_postgres_ref=dbt-core@v1.5.1rc1 +ARG dbt_redshift_ref=dbt-redshift@v1.5.1rc1 +ARG dbt_bigquery_ref=dbt-bigquery@v1.5.1rc1 +ARG dbt_snowflake_ref=dbt-snowflake@v1.5.1rc1 +ARG dbt_spark_ref=dbt-spark@v1.5.1rc1 # 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 e3a0f01530b..07dc989ebae 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.5.0" +version = "1.5.1rc1" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index aafffdcdcc3..87c729f89f0 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.5.0" +package_version = "1.5.1rc1" 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 e3a0f01530b..07dc989ebae 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.5.0" +version = "1.5.1rc1" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 72d453552c6..0532f927e45 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.5.0" +package_version = "1.5.1rc1" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))