diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 14d2db26b64..23a5af56f97 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.0rc1 +current_version = 1.3.0rc2 parse = (?P\d+) \.(?P\d+) \.(?P\d+) diff --git a/.changes/1.3.0-rc2.md b/.changes/1.3.0-rc2.md new file mode 100644 index 00000000000..a82bf923643 --- /dev/null +++ b/.changes/1.3.0-rc2.md @@ -0,0 +1,9 @@ +## dbt-core 1.3.0-rc2 - October 03, 2022 + +### Features + +- Migrate dbt-utils current_timestamp macros into core + adapters ([#5521](https://github.com/dbt-labs/dbt-core/issues/5521), [#5838](https://github.com/dbt-labs/dbt-core/pull/5838)) + +### Fixes + +- Account for disabled flags on models in schema files more completely ([#3992](https://github.com/dbt-labs/dbt-core/issues/3992), [#5868](https://github.com/dbt-labs/dbt-core/pull/5868)) diff --git a/.changes/unreleased/Features-20220914-095625.yaml b/.changes/1.3.0/Features-20220914-095625.yaml similarity index 100% rename from .changes/unreleased/Features-20220914-095625.yaml rename to .changes/1.3.0/Features-20220914-095625.yaml diff --git a/.changes/unreleased/Fixes-20220916-104854.yaml b/.changes/1.3.0/Fixes-20220916-104854.yaml similarity index 100% rename from .changes/unreleased/Fixes-20220916-104854.yaml rename to .changes/1.3.0/Fixes-20220916-104854.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index b5502735498..ea1f8e0f6b7 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.3.0-rc2 - October 03, 2022 + +### Features + +- Migrate dbt-utils current_timestamp macros into core + adapters ([#5521](https://github.com/dbt-labs/dbt-core/issues/5521), [#5838](https://github.com/dbt-labs/dbt-core/pull/5838)) + +### Fixes + +- Account for disabled flags on models in schema files more completely ([#3992](https://github.com/dbt-labs/dbt-core/issues/3992), [#5868](https://github.com/dbt-labs/dbt-core/pull/5868)) + + + ## dbt-core 1.3.0-rc1 - September 28, 2022 ### Breaking Changes @@ -81,7 +93,6 @@ - [@sdebruyn](https://github.com/sdebruyn) ([#5814](https://github.com/dbt-labs/dbt-core/pull/5814), [#5818](https://github.com/dbt-labs/dbt-core/pull/5818), [#5839](https://github.com/dbt-labs/dbt-core/pull/5839)) - [@yoiki](https://github.com/yoiki) ([#5693](https://github.com/dbt-labs/dbt-core/pull/5693)) - ## dbt-core 1.3.0-b2 - August 29, 2022 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index 2a5fdbbfcb9..9c91d50bf32 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -235,5 +235,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.3.0rc1" +__version__ = "1.3.0rc2" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index b64a5a33056..3cfb83c4077 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.3.0rc1" +package_version = "1.3.0rc2" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index 16d67f44699..a53e79a2a30 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,12 +14,12 @@ FROM --platform=$build_for python:3.10.7-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.3.0rc1 -ARG dbt_postgres_ref=dbt-core@v1.3.0rc1 -ARG dbt_redshift_ref=dbt-redshift@v1.3.0rc1 -ARG dbt_bigquery_ref=dbt-bigquery@v1.3.0rc1 -ARG dbt_snowflake_ref=dbt-snowflake@v1.3.0rc1 -ARG dbt_spark_ref=dbt-spark@v1.3.0rc1 +ARG dbt_core_ref=dbt-core@v1.3.0rc2 +ARG dbt_postgres_ref=dbt-core@v1.3.0rc2 +ARG dbt_redshift_ref=dbt-redshift@v1.3.0rc2 +ARG dbt_bigquery_ref=dbt-bigquery@v1.3.0rc2 +ARG dbt_snowflake_ref=dbt-snowflake@v1.3.0rc2 +ARG dbt_spark_ref=dbt-spark@v1.3.0rc2 # 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 8a13e6fd0d1..740ee3f9d35 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.3.0rc1" +version = "1.3.0rc2" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 1a0e5ecc79d..7db7abea26f 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.3.0rc1" +package_version = "1.3.0rc2" 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 8a13e6fd0d1..740ee3f9d35 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.3.0rc1" +version = "1.3.0rc2" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 2d149693fbb..ca1798ebabd 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.3.0rc1" +package_version = "1.3.0rc2" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))