diff --git a/CHANGELOG.md b/CHANGELOG.md index f4f45fcb..2c977c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## v1.6.3 [2023-04-27] +_Bug fixes_ +* Fix array bounds error when querying with an aggregator with no children. Show useful error instead. Closes #303. ([#303](https://github.com/turbot/steampipe-postgres-fdw/issues/303)) + ## v1.6.2 [2023-03-08] _Bug fixes_ * Fix nil reference panic when a scan fails to start - do not add an iterator to `Hub.runningIterators` until scan is started successfully. ([#298](https://github.com/turbot/steampipe-postgres-fdw/issues/298)) diff --git a/version/version.go b/version/version.go index 6c834d84..310bd360 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.6.2" +var fdwVersion = "1.6.3" // 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