Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/prereqs.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ Optional: Install the latest Fabric supported version of [Go](https://golang.org
installed (only required if you will be writing Go chaincode or SDK applications).

```shell
brew install go@1.26.1
go version # => go1.26.1 darwin/amd64
brew install go@1.26.3
go version # => go1.26.3 darwin/amd64
```

### JQ
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/hyperledger/fabric

go 1.26.1
go 1.26.3

require (
code.cloudfoundry.org/clock v1.15.0
Expand Down
2 changes: 1 addition & 1 deletion integration/chaincode/module/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module module

go 1.26.1
go 1.26.3

require (
github.com/hyperledger/fabric-chaincode-go/v2 v2.0.0-20240802023949-a356b32676fd
Expand Down
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module tools

go 1.26.1
go 1.26.3

tool (
github.com/AlekSi/gocov-xml
Expand Down
2 changes: 1 addition & 1 deletion vagrant/golang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# SPDX-License-Identifier: Apache-2.0

GOROOT='/opt/go'
GO_VERSION=1.26.1
GO_VERSION=1.26.3

# ----------------------------------------------------------------
# Install Golang
Expand Down