From 535cac03f6700c2289a48e49a04f923b134ab527 Mon Sep 17 00:00:00 2001 From: kai Date: Wed, 10 Apr 2024 09:31:39 +0100 Subject: [PATCH] v1.11 0-rc.0 --- CHANGELOG.md | 4 ++++ version/version.go | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17cb37c1..20d1c3b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.11.0 [tbd] +_Whats new_ +* Update Steampipe timing output to show all scans for all connections. ([#439](https://github.com/turbot/steampipe-postgres-fdw/issues/439)) + ## 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)) diff --git a/version/version.go b/version/version.go index 7f69a925..a09e70b2 100644 --- a/version/version.go +++ b/version/version.go @@ -11,12 +11,12 @@ import ( ) // The main version number that is being run at the moment. -var fdwVersion = "1.10.0" +var fdwVersion = "1.11.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 // such as "dev" (in development), "beta", "rc1", etc. -var prerelease = "" +var prerelease = "rc.0" // FdwVersion is an instance of semver.Version. This has the secondary // benefit of verifying during tests and init time that our version is a