Skip to content

Commit 79a0fe6

Browse files
committed
Merge branch 'v1.11.x' into develop
2 parents 4207b3f + 49ff635 commit 79a0fe6

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/buildimage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Setup Golang
4444
uses: actions/setup-go@v5
4545
with:
46-
go-version: 1.21
46+
go-version: 1.22
4747

4848
- name: Fetching Go Cache Paths
4949
id: go-cache-paths
@@ -162,7 +162,7 @@ jobs:
162162
- name: Setup Golang
163163
uses: actions/setup-go@v5
164164
with:
165-
go-version: 1.21
165+
go-version: 1.22
166166

167167
- name: Fetching Go Cache Paths
168168
id: go-cache-paths
@@ -248,7 +248,7 @@ jobs:
248248
- name: Setup GoLang
249249
uses: actions/setup-go@v5
250250
with:
251-
go-version: 1.21
251+
go-version: 1.22
252252

253253
- name: Fetching Go Cache Paths
254254
id: go-cache-paths

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Set up Go
1414
uses: actions/setup-go@v5
1515
with:
16-
go-version: 1.21
16+
go-version: 1.22
1717

1818
- name: golangci-lint
1919
uses: golangci/golangci-lint-action@v6
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Go
3131
uses: actions/setup-go@v5
3232
with:
33-
go-version: 1.21
33+
go-version: 1.22
3434

3535
- name: Checkout Steampipe
3636
uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v1.11.6 [2024-08-13]
2+
_Whats new_
3+
* Compiled with Go 1.22. ([#485](https://github.com/turbot/steampipe-postgres-fdw/issues/485))
4+
15
## v1.11.5 [2024-08-02]
26
_Bug fixes_
37
* Fix caching in the standalone plugin FDW extensions. ([#480](https://github.com/turbot/steampipe-postgres-fdw/issues/480))

go.mod

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
module github.com/turbot/steampipe-postgres-fdw
22

3-
go 1.21.0
4-
5-
toolchain go1.21.3
3+
go 1.22.4
64

75
require (
86
github.com/dgraph-io/ristretto v0.1.1 // indirect

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
)
1212

1313
// The main version number that is being run at the moment.
14-
var fdwVersion = "1.11.5"
14+
var fdwVersion = "1.11.6"
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

0 commit comments

Comments
 (0)