From 27b2e9ac54026e9a1cba3e1dafb1d6c590fd64ad Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 28 Feb 2023 14:48:16 +0000 Subject: [PATCH] Bumping version to 1.3.3 and generate changelog --- .bumpversion.cfg | 8 +------- .changes/1.3.3.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(+), 23 deletions(-) create mode 100644 .changes/1.3.3.md delete mode 100644 .changes/unreleased/Fixes-20230228-130318.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 141a0f818b9..8b7bb1cc379 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,11 +1,5 @@ [bumpversion] -current_version = 1.3.2 - -# `parse` allows parsing the version into the parts we need to check. There are some -# unnamed groups and that's okay because they do not need to be audited. If any part -# of the version passed and does not match the regex, it will fail. -# expected matches: `1.5.0`, `1.5.0a1`, `1.5.0a1.dev123457+nightly` -# excepted failures: `1`, `1.5`, `1.5.2-a1`, `text1.5.0` +current_version = 1.3.3 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.3.3.md b/.changes/1.3.3.md new file mode 100644 index 00000000000..70a03e7a3ff --- /dev/null +++ b/.changes/1.3.3.md @@ -0,0 +1,8 @@ +## dbt-core 1.3.3 - 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 3c6cc4dd6d3..87bbddb2f3a 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.3.2 - January 04, 2023 +## dbt-core 1.3.3 - February 28, 2023 ### Fixes -- Bug when partial parsing with an empty schema file ([#4850](https://github.com/dbt-labs/dbt-core/issues/4850), [#](https://github.com/dbt-labs/dbt-core/pull/)) +- 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.3.2 - January 04, 2023 + +### Fixes + +- Bug when partial parsing with an empty schema file ([#4850](https://github.com/dbt-labs/dbt-core/issues/4850), [#](https://github.com/dbt-labs/dbt-core/pull/)) + ## dbt-core 1.3.1 - November 16, 2022 ### Features - This pulls the profile name from args when constructing a RuntimeConfig in lib.py, enabling the dbt-server to override the value that's in the dbt_project.yml ([#6201](https://github.com/dbt-labs/dbt-core/issues/6201), [#6202](https://github.com/dbt-labs/dbt-core/pull/6202)) diff --git a/core/dbt/version.py b/core/dbt/version.py index b60d0293049..24988578da2 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.2" +__version__ = "1.3.3" installed = get_installed_version() diff --git a/core/setup.py b/core/setup.py index a5911efd114..e60925c7ec2 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.3.2" +package_version = "1.3.3" description = """With dbt, data analysts and engineers can build analytics \ the way engineers build applications.""" diff --git a/docker/Dockerfile b/docker/Dockerfile index b2f0d115b00..5b1ddf03b47 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.3.2 -ARG dbt_postgres_ref=dbt-core@v1.3.2 +ARG dbt_core_ref=dbt-core@v1.3.3 +ARG dbt_postgres_ref=dbt-core@v1.3.3 ARG dbt_redshift_ref=dbt-redshift@v1.3.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.3.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.3.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index 2238c8f697b..cfa2db68144 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.3.2" +version = "1.3.3" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 47de8b9c16a..c3695c62708 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.2" +package_version = "1.3.3" 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 2238c8f697b..cfa2db68144 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.3.2" +version = "1.3.3" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 87b03d65add..03a7be718d8 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.3.2" +package_version = "1.3.3" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))