From 96028df5fc1814eba1a37325f668ce187ec508a7 Mon Sep 17 00:00:00 2001 From: Github Build Bot Date: Tue, 28 Feb 2023 14:50:16 +0000 Subject: [PATCH] Bumping version to 1.1.4 and generate changelog --- .bumpversion.cfg | 8 +------- .changes/1.1.4.md | 8 ++++++++ .changes/unreleased/Fixes-20230228-130318.yaml | 6 ------ CHANGELOG.md | 14 ++++++++++++++ core/dbt/version.py | 2 +- core/scripts/create_adapter_plugins.py | 4 ++-- 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 +- 12 files changed, 33 insertions(+), 23 deletions(-) create mode 100644 .changes/1.1.4.md delete mode 100644 .changes/unreleased/Fixes-20230228-130318.yaml diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 82e60951340..19df2ddc1a9 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,11 +1,5 @@ [bumpversion] -current_version = 1.1.3 - -# `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.1.4 parse = (?P[\d]+) # major version number \.(?P[\d]+) # minor version number \.(?P[\d]+) # patch version number diff --git a/.changes/1.1.4.md b/.changes/1.1.4.md new file mode 100644 index 00000000000..3b1a5468c16 --- /dev/null +++ b/.changes/1.1.4.md @@ -0,0 +1,8 @@ +## dbt-core 1.1.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 b3ee765ace0..3aed5cf77cf 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ - Changes are listed under the (pre)release in which they first appear. Subsequent releases include changes from previous releases. - "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.1.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)) + + ## dbt-core 1.1.3 - January 05, 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/)) @@ -13,6 +24,7 @@ - Define compatibility for older manifest versions when using state: selection methods ([#5213](https://github.com/dbt-labs/dbt-core/issues/5213), [#5346](https://github.com/dbt-labs/dbt-core/pull/5346)) ### Under the Hood - Add annotation to render_value method reimplemented in #5334 ([#4796](https://github.com/dbt-labs/dbt-core/issues/4796), [#5382](https://github.com/dbt-labs/dbt-core/pull/5382)) + ## dbt-core 1.1.1 - June 15, 2022 ### Fixes - Relax minimum supported version of MarkupSafe ([#4745](https://github.com/dbt-labs/dbt-core/issues/4745), [#5039](https://github.com/dbt-labs/dbt-core/pull/5039)) @@ -27,6 +39,7 @@ ### Contributors - [@adamantike](https://github.com/adamantike) ([#5039](https://github.com/dbt-labs/dbt-core/pull/5039)) + ## dbt-core 1.1.0 - April 28, 2022 ### Breaking Changes - **Relevant to maintainers of adapter plugins _only_:** The abstractmethods `get_response` and `execute` now only return a `connection.AdapterReponse` in type hints. (Previously, they could return a string.) We encourage you to update your methods to return an object of class `AdapterResponse`, or implement a subclass specific to your adapter @@ -123,6 +136,7 @@ - [@poloaraujo](https://github.com/poloaraujo) ([#4854](https://github.com/dbt-labs/dbt-core/pull/4854)) - [@sungchun12](https://github.com/sungchun12) ([#4256](https://github.com/dbt-labs/dbt-core/pull/4256)) - [@willbowditch](https://github.com/willbowditch) ([#4777](https://github.com/dbt-labs/dbt-core/pull/4777)) + ## 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 2b158c0a64e..4dac5ad1554 100644 --- a/core/dbt/version.py +++ b/core/dbt/version.py @@ -234,5 +234,5 @@ def _get_adapter_plugin_names() -> Iterator[str]: yield plugin_name -__version__ = "1.1.3" +__version__ = "1.1.4" installed = get_installed_version() diff --git a/core/scripts/create_adapter_plugins.py b/core/scripts/create_adapter_plugins.py index 037d9060637..b5ce17376c1 100644 --- a/core/scripts/create_adapter_plugins.py +++ b/core/scripts/create_adapter_plugins.py @@ -273,12 +273,12 @@ def parse_args(argv=None): parser.add_argument("adapter") parser.add_argument("--title-case", "-t", default=None) parser.add_argument("--dependency", action="append") - parser.add_argument("--dbt-core-version", default="1.1.3") + parser.add_argument("--dbt-core-version", default="1.1.4") parser.add_argument("--email") parser.add_argument("--author") parser.add_argument("--url") parser.add_argument("--sql", action="store_true") - parser.add_argument("--package-version", default="1.1.3") + parser.add_argument("--package-version", default="1.1.4") parser.add_argument("--project-version", default="1.0") parser.add_argument("--no-dependency", action="store_false", dest="set_dependency") parsed = parser.parse_args() diff --git a/core/setup.py b/core/setup.py index c1a2bcab1f1..aaf9e209adf 100644 --- a/core/setup.py +++ b/core/setup.py @@ -25,7 +25,7 @@ package_name = "dbt-core" -package_version = "1.1.3" +package_version = "1.1.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 0cb9d14b9d1..92d682d177e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -14,8 +14,8 @@ FROM --platform=$build_for python:3.10.3-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.1.3 -ARG dbt_postgres_ref=dbt-core@v1.1.3 +ARG dbt_core_ref=dbt-core@v1.1.4 +ARG dbt_postgres_ref=dbt-core@v1.1.4 ARG dbt_redshift_ref=dbt-redshift@v1.1.0 ARG dbt_bigquery_ref=dbt-bigquery@v1.1.0 ARG dbt_snowflake_ref=dbt-snowflake@v1.1.0 diff --git a/plugins/postgres/dbt/adapters/postgres/__version__.py b/plugins/postgres/dbt/adapters/postgres/__version__.py index a67d06383a3..2e25edef03f 100644 --- a/plugins/postgres/dbt/adapters/postgres/__version__.py +++ b/plugins/postgres/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.1.3" +version = "1.1.4" diff --git a/plugins/postgres/setup.py b/plugins/postgres/setup.py index 71b06d47d10..905d49245e5 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.1.3" +package_version = "1.1.4" description = """The postgres adpter 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 a67d06383a3..2e25edef03f 100644 --- a/tests/adapter/dbt/tests/adapter/__version__.py +++ b/tests/adapter/dbt/tests/adapter/__version__.py @@ -1 +1 @@ -version = "1.1.3" +version = "1.1.4" diff --git a/tests/adapter/setup.py b/tests/adapter/setup.py index 478ae7631a0..1005a54159f 100644 --- a/tests/adapter/setup.py +++ b/tests/adapter/setup.py @@ -20,7 +20,7 @@ package_name = "dbt-tests-adapter" -package_version = "1.1.3" +package_version = "1.1.4" description = """The dbt adapter tests for adapter plugins""" this_directory = os.path.abspath(os.path.dirname(__file__))