Skip to content

Commit

Permalink
v1.4.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaidaguerre committed Aug 9, 2022
1 parent 9c54656 commit 349cb92
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.4.0 [tbd]
_What's new_
* Call plugin `EndExecute` when Postgres calls `EndForeignScan`, to ensure plugin caches all data. ([#232](https://github.com/turbot/steampipe-postgres-fdw/issues/232))

## v1.3.1 [2022-08-09]
_Bug fixes_
* Ensure ConnectionPlugins (i.e. plugin GRPC clients) are cached by the hub. ([#230](https://github.com/turbot/steampipe-postgres-fdw/issues/230))
Expand Down
4 changes: 2 additions & 2 deletions version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ import (
)

// The main version number that is being run at the moment.
var fdwVersion = "1.3.1"
var fdwVersion = "1.4.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
Expand Down

0 comments on commit 349cb92

Please sign in to comment.