From d2c9ee46a19f0f0ec0f74a5dcaa065d88523c39b Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 28 Feb 2023 14:38:35 +0000 Subject: [PATCH] Bumping version to 1.4.4 and generate changelog --- .bumpversion.cfg | 2 +- .changes/1.4.4.md | 8 ++++++++ .changes/unreleased/Fixes-20230228-130318.yaml | 6 ------ CHANGELOG.md | 12 ++++++++++-- core/dbt/version.py | 2 +- core/setup.py | 2 +- docker/Dockerfile | 4 ++-- .../postgres/dbt/adapters/postgres/__version__.py | 2 +- plugins/postgres/setup.py | 2 +- tests/adapter/dbt/tests/adapter/__version__.py | 2 +- tests/adapter/setup.py | 2 +- 11 files changed, 27 insertions(+), 17 deletions(-) create mode 100644 .changes/1.4.4.md delete mode 100644 .changes/unreleased/Fixes-20230228-130318.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 46378ccebee..f7eb75c8928 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.4.3 +current_version = 1.4.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.4.4.md b/.changes/1.4.4.md new file mode 100644 index 00000000000..58c1a72647b --- /dev/null +++ b/.changes/1.4.4.md @@ -0,0 +1,8 @@ +## dbt-core 1.4.4 - February 28, 2023 + +### Fixes + +- add pytz dependency ([#7077](https://github.com/dbt-labs/dbt-core/issues/7077)) + +### Contributors +- [@sdebruyn](https://github.com/sdebruyn) ([#7077](https://github.com/dbt-labs/dbt-core/issues/7077)) diff --git a/.changes/unreleased/Fixes-20230228-130318.yaml b/.changes/unreleased/Fixes-20230228-130318.yaml deleted file mode 100644 index abcbee150a2..00000000000 --- a/.changes/unreleased/Fixes-20230228-130318.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Fixes -body: add pytz dependency -time: 2023-02-28T13:03:18.353468+01:00 -custom: - Author: sdebruyn - Issue: "7077" diff --git a/CHANGELOG.md b/CHANGELOG.md index c33fd7114f7..7b03fc6a8f7 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,14 +5,22 @@ - "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.4.3 - February 24, 2023 +## dbt-core 1.4.4 - February 28, 2023 ### Fixes -- Fix semver comparison logic by ensuring numeric values ([#7039](https://github.com/dbt-labs/dbt-core/issues/7039)) +- add pytz dependency ([#7077](https://github.com/dbt-labs/dbt-core/issues/7077)) +### Contributors +- [@sdebruyn](https://github.com/sdebruyn) ([#7077](https://github.com/dbt-labs/dbt-core/issues/7077)) +## dbt-core 1.4.3 - February 24, 2023 + +### Fixes + +- Fix semver comparison logic by ensuring numeric values ([#7039](https://github.com/dbt-labs/dbt-core/issues/7039)) + ## dbt-core 1.4.2 - February 23, 2023 ### Fixes diff --git a/core/dbt/version.py b/core/dbt/version.py index 0a20f9cf76f..1133f31c371 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.4.3" +__version__ = "1.4.4" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index cb53f8ec02b..3898a265cef 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.4.3" +package_version = "1.4.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 451c6b102fc..2fea1b74062 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ 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.4.3 -ARG dbt_postgres_ref=dbt-core@v1.4.3 +ARG dbt_core_ref=dbt-core@v1.4.4 +ARG dbt_postgres_ref=dbt-core@v1.4.4 ARG dbt_redshift_ref=dbt-redshift@v1.4.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.4.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.4.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 8fb4690e757..98da246a277 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.4.3" +version = "1.4.4" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 155e334cf6b..4c032ceaf3d 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.4.3" +package_version = "1.4.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 8fb4690e757..98da246a277 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.4.3" +version = "1.4.4" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 5421e1b7291..9f1eb3056a8 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.4.3" +package_version = "1.4.4" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))