diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 8e9dfa82151..6480df5727b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.7.3 +current_version = 1.7.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.7.4.md b/.changes/1.7.4.md new file mode 100644 index 00000000000..6fb41bc80a0 --- /dev/null +++ b/.changes/1.7.4.md @@ -0,0 +1,12 @@ +## dbt-core 1.7.4 - December 14, 2023 + +### Features + +- Adds support for parsing conversion metric related properties for the semantic layer. ([#9203](https://github.com/dbt-labs/dbt-core/issues/9203)) + +### Fixes + +- Ensure we produce valid jsonschema schemas for manifest, catalog, run-results, and sources ([#8991](https://github.com/dbt-labs/dbt-core/issues/8991)) + +### Contributors +- [@WilliamDee](https://github.com/WilliamDee) ([#9203](https://github.com/dbt-labs/dbt-core/issues/9203)) diff --git a/.changes/unreleased/Features-20231206-181458.yaml b/.changes/unreleased/Features-20231206-181458.yaml deleted file mode 100644 index f14c1af4cbd..00000000000 --- a/.changes/unreleased/Features-20231206-181458.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Features -body: Adds support for parsing conversion metric related properties for the semantic - layer. -time: 2023-12-06T18:14:58.688221-05:00 -custom: - Author: WilliamDee - Issue: "9203" diff --git a/.changes/unreleased/Fixes-20231127-165244.yaml b/.changes/unreleased/Fixes-20231127-165244.yaml deleted file mode 100644 index 87147eb6305..00000000000 --- a/.changes/unreleased/Fixes-20231127-165244.yaml +++ /dev/null @@ -1,7 +0,0 @@ -kind: Fixes -body: Ensure we produce valid jsonschema schemas for manifest, catalog, run-results, - and sources -time: 2023-11-27T16:52:44.590313-08:00 -custom: - Author: QMalcolm - Issue: "8991" diff --git a/CHANGELOG.md b/CHANGELOG.md index f1011919df2..42286a3454c 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,20 @@ - "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.7.4 - December 14, 2023 + +### Features + +- Adds support for parsing conversion metric related properties for the semantic layer. ([#9203](https://github.com/dbt-labs/dbt-core/issues/9203)) + +### Fixes + +- Ensure we produce valid jsonschema schemas for manifest, catalog, run-results, and sources ([#8991](https://github.com/dbt-labs/dbt-core/issues/8991)) + +### Contributors +- [@WilliamDee](https://github.com/WilliamDee) ([#9203](https://github.com/dbt-labs/dbt-core/issues/9203)) + + ## dbt-core 1.7.3 - November 29, 2023 ### Fixes @@ -13,8 +27,6 @@ - deps: Use PackageRenderer to read package-lock.json ([#9127](https://github.com/dbt-labs/dbt-core/issues/9127)) - Get sources working again in dbt docs generate ([#9119](https://github.com/dbt-labs/dbt-core/issues/9119)) - - ## dbt-core 1.7.2 - November 16, 2023 ### Features diff --git a/core/dbt/version.py b/core/dbt/version.py index c170fa40df9..a5d57dff620 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.7.3" +__version__ = "1.7.4" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index 461d8a7fa2a..bcd4c47e217 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.7.3" +package_version = "1.7.4" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index d3fa8c0a786..d41f876b61d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,12 +16,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.7.3 -ARG dbt_postgres_ref=dbt-core@v1.7.3 -ARG dbt_redshift_ref=dbt-redshift@v1.7.3 -ARG dbt_bigquery_ref=dbt-bigquery@v1.7.3 -ARG dbt_snowflake_ref=dbt-snowflake@v1.7.3 -ARG dbt_spark_ref=dbt-spark@v1.7.3 +ARG dbt_core_ref=dbt-core@v1.7.4 +ARG dbt_postgres_ref=dbt-core@v1.7.4 +ARG dbt_redshift_ref=dbt-redshift@v1.7.4 +ARG dbt_bigquery_ref=dbt-bigquery@v1.7.4 +ARG dbt_snowflake_ref=dbt-snowflake@v1.7.4 +ARG dbt_spark_ref=dbt-spark@v1.7.4 # 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 a26c3016541..582554e87c2 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.7.3" +version = "1.7.4" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index ffae1cc6f44..49210e65533 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.7.3" +package_version = "1.7.4" 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 a26c3016541..582554e87c2 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.7.3" +version = "1.7.4" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 09ee1fe8efa..8641317bff7 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.7.3" +package_version = "1.7.4" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))