From c298d4fb7d763e6e45432eee6535036c03db99be Mon Sep 17 00:00:00 2001 From: Puskar Basu Date: Tue, 30 Jul 2024 17:53:10 +0530 Subject: [PATCH 1/2] Update go version to 1.22 --- .github/workflows/buildimage.yml | 6 +++--- .github/workflows/test.yml | 4 ++-- go.mod | 4 +--- 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/buildimage.yml b/.github/workflows/buildimage.yml index df59f72c..e527d079 100644 --- a/.github/workflows/buildimage.yml +++ b/.github/workflows/buildimage.yml @@ -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 @@ -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 @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index aa8ddcf7..30e90c97 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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 @@ -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 diff --git a/go.mod b/go.mod index 36242b46..b98f75fa 100644 --- a/go.mod +++ b/go.mod @@ -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 From 49ff635417a25c930102bcff4b34b5f8ea3edd35 Mon Sep 17 00:00:00 2001 From: Puskar Basu <45908484+pskrbasu@users.noreply.github.com> Date: Tue, 13 Aug 2024 16:02:37 +0530 Subject: [PATCH 2/2] Update CHANGELOG for v1.11.6 (#492) --- CHANGELOG.md | 4 ++++ version/version.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9dde8b9..a0e47e7a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/version/version.go b/version/version.go index d17215af..1f393c4d 100644 --- a/version/version.go +++ b/version/version.go @@ -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