From d9bb5d4f57259d1feea89413b75245a599d978e9 Mon Sep 17 00:00:00 2001 From: kai Date: Fri, 22 Dec 2023 14:05:16 +0000 Subject: [PATCH] v1.9.1 --- CHANGELOG.md | 10 ++++++++++ version/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3bfbb379..4540febc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v1.9.1 [2023-12-22] +_Whats new_ +* allow using pprof on FDW when STEAMPIPE_FDW_PPROF environment variable is set. ([#368](https://github.com/turbot/steampipe-postgres-fdw/issues/368)) + +_Bug fixes_ +* Row count is incorrect when using aggregator connections. ([#402](https://github.com/turbot/steampipe-postgres-fdw/issues/402)) +* OpenTelemetry metric names must only contain `[A-Za-z0-9_.-]`. ([#369](https://github.com/turbot/steampipe-postgres-fdw/issues/369)) +* Update makefile to install into `STEAMPIPE_INSTALL_DIR` if set. + + ## 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)) diff --git a/version/version.go b/version/version.go index 1d3ba5ca..dc68fa92 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.0" +var fdwVersion = "1.9.1" // 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