From d6343da89d44724b1deafce33de22a1fb03d95d6 Mon Sep 17 00:00:00 2001 From: kai Date: Mon, 4 Mar 2024 11:49:33 +0000 Subject: [PATCH] v1.10.0 --- CHANGELOG.md | 4 ++++ version/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 796e596e..17cb37c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.10.0 [2024-03-04] +_Whats new_ +* If `STEAMPIPE_FDW_PARALLEL_SAFE` env var is set is set, mark FDW as PARALLEL SAFE to improve performance. ([#428](https://github.com/turbot/steampipe-postgres-fdw/issues/428)) + ## v1.9.3 [2024-02-09] _Whats new_ * Allow connecting to a local, insecure OpenTelemetry server when `STEAMPIPE_OTEL_INSECURE` environment variable is set. ([#419](https://github.com/turbot/steampipe-postgres-fdw/issues/419)) diff --git a/version/version.go b/version/version.go index 25015bad..7f69a925 100644 --- a/version/version.go +++ b/version/version.go @@ -11,7 +11,7 @@ import ( ) // The main version number that is being run at the moment. -var fdwVersion = "1.9.3" +var fdwVersion = "1.10.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release