Skip to content

Commit 91577cc

Browse files
Bump go version
Signed-off-by: Marcus Brandenburger <[email protected]>
1 parent 7f07b9a commit 91577cc

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

Diff for: docs/setup-option2.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Make sure that you have the following required dependencies installed:
1010

1111
* CMake v3.5.1 or higher
1212

13-
* [Go](https://golang.org/) 1.21.x or higher
13+
* [Go](https://golang.org/) 1.23.x or higher
1414

1515
* Docker 18.09 (or higher) and docker-compose 1.25.x (or higher)
1616
Note that version from Ubuntu 18.04 is not recent enough! To upgrade, install a recent version following the instructions from [docker.com](https://docs.docker.com/compose/install/), e.g., for version 1.25.4 execute

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric-private-chaincode
22

3-
go 1.21
3+
go 1.23.5
44

55
// Note:
66
// - fabric has a go.mod but the normal tagging, e.g., v2.2.0 does NOT

Diff for: integration/go_chaincode/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric-private-chaincode/integration/go_chaincode
22

3-
go 1.21
3+
go 1.23.5
44

55
replace (
66
github.com/btcsuite/btcd v0.23.4 => github.com/btcsuite/btcd v0.22.1

Diff for: samples/application/ccapi/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric-private-chaincode/samples/application/ccapi
22

3-
go 1.21
3+
go 1.23.5
44

55
require (
66
github.com/gin-contrib/cors v1.4.0

Diff for: samples/demos/irb/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hyperledger/fabric-private-chaincode/samples/demos/irb
22

3-
go 1.21
3+
go 1.23.5
44

55
replace (
66
github.com/hyperledger-labs/orion-sdk-go => github.com/hyperledger-labs/orion-sdk-go v0.2.5

Diff for: samples/deployment/fabric-smart-client/the-simple-testing-network/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module the-simple-testing-network
22

3-
go 1.21
3+
go 1.23.5
44

55
replace (
66
github.com/hyperledger-labs/orion-sdk-go => github.com/hyperledger-labs/orion-sdk-go v0.2.5

Diff for: utils/docker/base-dev/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ FROM hyperledger/fabric-private-chaincode-base-rt:${FPC_VERSION} as common
2121
LABEL org.opencontainers.image.source https://github.com/hyperledger/fabric-private-chaincode
2222

2323
# config/build params
24-
ARG GO_VERSION=1.21.9
24+
ARG GO_VERSION=1.23.5
2525
ARG NANOPB_VERSION=0.4.7
2626
ARG OPENSSL_VERSION=3.0.12
2727
ARG SGXSSL_VERSION=3.0_Rev1

0 commit comments

Comments
 (0)