Skip to content

Commit

Permalink
Merge pull request #494 from turbot/v1.11.x
Browse files Browse the repository at this point in the history
Release steampipe-postgres-fdw v1.11.6. Closes #493
  • Loading branch information
kaidaguerre authored Aug 13, 2024
2 parents d56feb5 + 49ff635 commit 7dad915
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/buildimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: Fetching Go Cache Paths
id: go-cache-paths
Expand Down Expand Up @@ -162,7 +162,7 @@ jobs:
- name: Setup Golang
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: Fetching Go Cache Paths
id: go-cache-paths
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
- name: Setup GoLang
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: Fetching Go Cache Paths
id: go-cache-paths
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: golangci-lint
uses: golangci/golangci-lint-action@v6
Expand All @@ -30,7 +30,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21
go-version: 1.22

- name: Checkout Steampipe
uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v1.11.6 [2024-08-13]
_Whats new_
* Compiled with Go 1.22. ([#485](https://github.com/turbot/steampipe-postgres-fdw/issues/485))

## v1.11.5 [2024-08-02]
_Bug fixes_
* Fix caching in the standalone plugin FDW extensions. ([#480](https://github.com/turbot/steampipe-postgres-fdw/issues/480))
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/turbot/steampipe-postgres-fdw

go 1.21.0

toolchain go1.21.3
go 1.22.4

require (
github.com/dgraph-io/ristretto v0.1.1 // indirect
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
)

// The main version number that is being run at the moment.
var fdwVersion = "1.11.5"
var fdwVersion = "1.11.6"

// 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
Expand Down

0 comments on commit 7dad915

Please sign in to comment.