diff --git a/.changes/1.3.2.md b/.changes/1.3.2.md new file mode 100644 index 000000000..bdc7f593f --- /dev/null +++ b/.changes/1.3.2.md @@ -0,0 +1,6 @@ +## dbt-adapters 1.3.2 - July 02, 2024 + +### Under the Hood + +* Fix query timer resolution +* Add optional release_connection parameter to connection_named method diff --git a/.changes/unreleased/Under the Hood-20240621-150837.yaml b/.changes/unreleased/Under the Hood-20240621-150837.yaml deleted file mode 100644 index fab070c71..000000000 --- a/.changes/unreleased/Under the Hood-20240621-150837.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Fix query timer resolution -time: 2024-06-21T15:08:37.43527-04:00 -custom: - Author: peterallenwebb - Issue: "246" diff --git a/.changes/unreleased/Under the Hood-20240624-161108.yaml b/.changes/unreleased/Under the Hood-20240624-161108.yaml deleted file mode 100644 index 9042547f2..000000000 --- a/.changes/unreleased/Under the Hood-20240624-161108.yaml +++ /dev/null @@ -1,6 +0,0 @@ -kind: Under the Hood -body: Add optional release_connection parameter to connection_named method -time: 2024-06-24T16:11:08.773419+01:00 -custom: - Author: aranke - Issue: "247" diff --git a/CHANGELOG.md b/CHANGELOG.md index 9114bcd1d..ce8d78371 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -19,6 +19,13 @@ and is generated by [Changie](https://github.com/miniscruff/changie). * Update Clone test to reflect core change removing `deferred` attribute from nodes +## dbt-adapters 1.3.2 - July 02, 2024 + +### Under the Hood + +* Fix query timer resolution +* Add optional release_connection parameter to connection_named method + ## dbt-adapters 1.3.1 - June 20, 2024 ## dbt-adapters 1.3.0 - June 18, 2024 diff --git a/dbt/adapters/__about__.py b/dbt/adapters/__about__.py index 35ec9a371..2238c8f69 100644 --- a/dbt/adapters/__about__.py +++ b/dbt/adapters/__about__.py @@ -1 +1 @@ -version = "1.3.1" +version = "1.3.2"