diff --git a/.changes/1.8.0-b2.md b/.changes/1.8.0-b2.md new file mode 100644 index 00000000..193206cc --- /dev/null +++ b/.changes/1.8.0-b2.md @@ -0,0 +1,14 @@ +## dbt-postgres 1.8.0-b2 - April 03, 2024 + +### Under the Hood + +* Add unit test for transaction semantics. + +### Dependencies + +* add "no-binary" install option +* Add `dbt-core` as a dependency to preserve backwards compatibility for installation + +### Security + +* Pin `black>=24.3` in `pyproject.toml` diff --git a/.changes/unreleased/Dependencies-20240328-133507.yaml b/.changes/1.8.0/Dependencies-20240328-133507.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240328-133507.yaml rename to .changes/1.8.0/Dependencies-20240328-133507.yaml diff --git a/.changes/unreleased/Dependencies-20240403-135902.yaml b/.changes/1.8.0/Dependencies-20240403-135902.yaml similarity index 100% rename from .changes/unreleased/Dependencies-20240403-135902.yaml rename to .changes/1.8.0/Dependencies-20240403-135902.yaml diff --git a/.changes/unreleased/Security-20240327-193942.yaml b/.changes/1.8.0/Security-20240327-193942.yaml similarity index 100% rename from .changes/unreleased/Security-20240327-193942.yaml rename to .changes/1.8.0/Security-20240327-193942.yaml diff --git a/.changes/unreleased/Under the Hood-20240226-225642.yaml b/.changes/1.8.0/Under the Hood-20240226-225642.yaml similarity index 100% rename from .changes/unreleased/Under the Hood-20240226-225642.yaml rename to .changes/1.8.0/Under the Hood-20240226-225642.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ca9d33a..29a31234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,5 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html), and is generated by [Changie](https://github.com/miniscruff/changie). +## dbt-postgres 1.8.0-b2 - April 03, 2024 -No releases yet, this file will be updated when generating your first release. +### Under the Hood + +* Add unit test for transaction semantics. + +### Dependencies + +* add "no-binary" install option +* Add `dbt-core` as a dependency to preserve backwards compatibility for installation + +### Security + +* Pin `black>=24.3` in `pyproject.toml` diff --git a/dbt/adapters/postgres/__version__.py b/dbt/adapters/postgres/__version__.py index 6496f3e2..7d16c28f 100644 --- a/dbt/adapters/postgres/__version__.py +++ b/dbt/adapters/postgres/__version__.py @@ -1 +1 @@ -version = "1.8.0b1" +version = "1.8.0b2"