Skip to content

Commit b91ce78

Browse files
committed
v1.4.0-rc.0
1 parent 517d211 commit b91ce78

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v1.4.0 [tbd]
2+
* Do not start scan until the first time `IterateForeignScan` is called. Do not create an iterator in `StartForeignScan` if flag `EXEC_FLAG_EXPLAIN_ONLY` is set. ([#237](https://github.com/turbot/steampipe-postgres-fdw/issues/237))
3+
14
## v1.3.2 [2022-08-23]
25
* Update referenced `steampipe-plugin-sdk` and `steampipe` version
36

version/version.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ import (
1111
)
1212

1313
// The main version number that is being run at the moment.
14-
var fdwVersion = "1.3.2"
14+
var fdwVersion = "1.4.0"
1515

1616
// A pre-release marker for the version. If this is "" (empty string)
1717
// then it means that it is a final release. Otherwise, this is a pre-release
1818
// such as "dev" (in development), "beta", "rc1", etc.
19-
var prerelease = ""
19+
var prerelease = "rc.0"
2020

2121
// FdwVersion is an instance of semver.Version. This has the secondary
2222
// benefit of verifying during tests and init time that our version is a

0 commit comments

Comments
 (0)