From e0936621fdb2ca975d2a751b4cca6332b42272db Mon Sep 17 00:00:00 2001 From: kai Date: Fri, 29 Sep 2023 18:46:43 +0100 Subject: [PATCH] v1.9.0 --- CHANGELOG.md | 4 ++++ version/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38e0a83c..3bfbb379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.9.0 [2023-09-29] +_Whats new_ +* Add ability to clear connection cache by inserting into `steampipe_settings` table. ([#360](https://github.com/turbot/steampipe-postgres-fdw/issues/360)) + ## v1.8.0 [2023-09-27] _Bug fixes_ * Remove duplicate qual values for duplicate IN clauses. ([#353](https://github.com/turbot/steampipe-postgres-fdw/issues/353)) diff --git a/version/version.go b/version/version.go index 53ec60c3..1d3ba5ca 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.8.0" +var fdwVersion = "1.9.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