Skip to content

Commit b7dc535

Browse files
committed
v2.1.0
1 parent b9cd110 commit b7dc535

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v2.1.0 [2025-07-09]
2+
_Whats new_
3+
- Bump module to v2 and update Go version to 1.24.
4+
5+
_Bug fixes_
6+
- Fix build failure caused by incorrect %s format verb for metadataCount (int). ([#566](https://github.com/turbot/steampipe-postgres-fdw/pull/566))
7+
18
## v2.0.0 [2025-06-11]
29
_Breaking changes_
310
- Increased minimum required `glibc` version to `2.34` due to upgrading the Linux build environment from Ubuntu 20.04 to Ubuntu 22.04 GitHub runners. As a result, the FDW no longer supports older Linux distributions such as Ubuntu 20.04 and Amazon Linux 2.

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var fdwVersion = "2.1.0"
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 = "rc.0"
19+
var prerelease = ""
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)