Skip to content

Commit

Permalink
Bumping version to 1.3.2 and generate CHANGELOG (#6513)
Browse files Browse the repository at this point in the history
Co-authored-by: Github Build Bot <buildbot@fishtownanalytics.com>
  • Loading branch information
github-actions[bot] and FishtownBuildBot committed Jan 4, 2023
1 parent e1345d8 commit 3f17044
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.2rc1
current_version = 1.3.2
parse = (?P<major>\d+)
\.(?P<minor>\d+)
\.(?P<patch>\d+)
Expand Down
2 changes: 1 addition & 1 deletion .changes/1.3.2-rc1.md → .changes/1.3.2.md
@@ -1,4 +1,4 @@
## dbt-core 1.3.2-rc1 - January 04, 2023
## dbt-core 1.3.2 - January 04, 2023

### Fixes

Expand Down
6 changes: 0 additions & 6 deletions .changes/1.3.2/Fixes-20230101-223405.yaml

This file was deleted.

2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -5,7 +5,7 @@
- "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-rc1 - January 04, 2023
## dbt-core 1.3.2 - January 04, 2023

### Fixes

Expand Down
2 changes: 1 addition & 1 deletion core/dbt/version.py
Expand Up @@ -235,5 +235,5 @@ def _get_adapter_plugin_names() -> Iterator[str]:
yield plugin_name


__version__ = "1.3.2rc1"
__version__ = "1.3.2"
installed = get_installed_version()
2 changes: 1 addition & 1 deletion core/setup.py
Expand Up @@ -25,7 +25,7 @@


package_name = "dbt-core"
package_version = "1.3.2rc1"
package_version = "1.3.2"
description = """With dbt, data analysts and engineers can build analytics \
the way engineers build applications."""

Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile
Expand Up @@ -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@<some_version> is correct

ARG dbt_core_ref=dbt-core@v1.3.2rc1
ARG dbt_postgres_ref=dbt-core@v1.3.2rc1
ARG dbt_core_ref=dbt-core@v1.3.2
ARG dbt_postgres_ref=dbt-core@v1.3.2
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
Expand Down
2 changes: 1 addition & 1 deletion plugins/postgres/dbt/adapters/postgres/__version__.py
@@ -1 +1 @@
version = "1.3.2rc1"
version = "1.3.2"
2 changes: 1 addition & 1 deletion plugins/postgres/setup.py
Expand Up @@ -41,7 +41,7 @@ def _dbt_psycopg2_name():


package_name = "dbt-postgres"
package_version = "1.3.2rc1"
package_version = "1.3.2"
description = """The postgres adapter plugin for dbt (data build tool)"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down
2 changes: 1 addition & 1 deletion tests/adapter/dbt/tests/adapter/__version__.py
@@ -1 +1 @@
version = "1.3.2rc1"
version = "1.3.2"
2 changes: 1 addition & 1 deletion tests/adapter/setup.py
Expand Up @@ -20,7 +20,7 @@


package_name = "dbt-tests-adapter"
package_version = "1.3.2rc1"
package_version = "1.3.2"
description = """The dbt adapter tests for adapter plugins"""

this_directory = os.path.abspath(os.path.dirname(__file__))
Expand Down

0 comments on commit 3f17044

Please sign in to comment.