Skip to content

Commit a36b138

Browse files
committed
v1.3.0
1 parent f7c1403 commit a36b138

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.3.0 [2022-08-05]
2+
_What's new?_
3+
* Add support for a single plugin instance hosting multiple Steampipe connections, rather than an instance per connection. ([#226](https://github.com/turbot/steampipe-postgres-fdw/issues/226))
4+
15
## v1.2.2 [2022-07-21]
26
_Bug fixes_
37
* Fix build issue which causes failure to load FDW on Arm Docker images. ([#219](https://github.com/turbot/steampipe-postgres-fdw/issues/219))

version/version.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// packages to consume, without creating import cycles.
33
//
44
// This package should not import any other steampipe packages.
5-
//
65
package version
76

87
import (
@@ -17,7 +16,7 @@ var fdwVersion = "1.3.0"
1716
// A pre-release marker for the version. If this is "" (empty string)
1817
// then it means that it is a final release. Otherwise, this is a pre-release
1918
// such as "dev" (in development), "beta", "rc1", etc.
20-
var prerelease = "rc.3"
19+
var prerelease = ""
2120

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

0 commit comments

Comments
 (0)