Skip to content

Commit

Permalink
Release v2.0.0-rc.6
Browse files Browse the repository at this point in the history
  • Loading branch information
muXxer committed May 22, 2023
1 parent b3d4c3e commit 9a57a2d
Show file tree
Hide file tree
Showing 6 changed files with 78 additions and 96 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to this project will be documented in this file.

## [2.0.0-rc.6] - 22.05.2023

_**Warning**: This is a mandatory release for all nodes._

### Fixed
- Updated iota.go with latest fixes


## [2.0.0-rc.5] - 07.03.2023

_**Warning**: This is a mandatory release for all nodes._
Expand Down
2 changes: 1 addition & 1 deletion core/app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var (
Name = "HORNET"

// Version of the app.
Version = "2.0.0-rc.5"
Version = "2.0.0-rc.6"
)

func App() *app.App {
Expand Down
4 changes: 2 additions & 2 deletions documentation/docs/how_tos/private_tangle.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ Once you have completed all the installation [requirements](#requirements), you
```sh
mkdir private_tangle
cd private_tangle
curl -L -O "https://github.com/iotaledger/hornet/releases/download/v2.0.0-rc.5/HORNET-2.0.0-rc.5-private_tangle.tar.gz"
tar -zxf HORNET-2.0.0-rc.5-private_tangle.tar.gz
curl -L -O "https://github.com/iotaledger/hornet/releases/download/v2.0.0-rc.6/HORNET-2.0.0-rc.6-private_tangle.tar.gz"
tar -zxf HORNET-2.0.0-rc.6-private_tangle.tar.gz
```

## Bootstrap your network
Expand Down
41 changes: 21 additions & 20 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.19

require (
github.com/blang/vfs v1.0.0
github.com/cockroachdb/pebble v0.0.0-20230118173120-15945a2be184
github.com/cockroachdb/pebble v0.0.0-20230209160836-829675f94811
github.com/docker/docker v20.10.22+incompatible
github.com/docker/go-connections v0.4.0
github.com/dustin/go-humanize v1.0.1
Expand All @@ -16,7 +16,7 @@ require (
github.com/iotaledger/inx-app v1.0.0-rc.2
github.com/iotaledger/inx/go v1.0.0-rc.1
github.com/iotaledger/iota.go v1.0.0
github.com/iotaledger/iota.go/v3 v3.0.0-rc.2
github.com/iotaledger/iota.go/v3 v3.0.0-rc.3
github.com/labstack/echo-contrib v0.13.1
github.com/labstack/echo/v4 v4.10.0
github.com/labstack/gommon v0.4.0
Expand All @@ -31,9 +31,9 @@ require (
github.com/wollac/iota-crypto-demo v0.0.0-20221117162917-b10619eccb98
go.uber.org/atomic v1.10.0
go.uber.org/dig v1.16.1
golang.org/x/crypto v0.5.0
golang.org/x/term v0.4.0
google.golang.org/grpc v1.52.0
golang.org/x/crypto v0.9.0
golang.org/x/term v0.8.0
google.golang.org/grpc v1.55.0
)

require (
Expand All @@ -45,32 +45,32 @@ require (
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect
github.com/cespare/xxhash v1.1.0 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cockroachdb/errors v1.9.0 // indirect
github.com/cockroachdb/errors v1.9.1 // indirect
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect
github.com/cockroachdb/redact v1.1.3 // indirect
github.com/containerd/cgroups v1.0.4 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/davidlazar/go-crypto v0.0.0-20200604182044-b73af7476f6c // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
github.com/docker/distribution v2.8.1+incompatible // indirect
github.com/docker/go-units v0.5.0 // indirect
github.com/eclipse/paho.mqtt.golang v1.4.2 // indirect
github.com/elastic/gosigar v0.14.2 // indirect
github.com/emirpasic/gods v1.18.1 // indirect
github.com/ethereum/go-ethereum v1.10.26 // indirect
github.com/ethereum/go-ethereum v1.11.6 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/flynn/noise v1.0.0 // indirect
github.com/francoispqt/gojay v1.2.13 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/getsentry/sentry-go v0.17.0 // indirect
github.com/getsentry/sentry-go v0.18.0 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
github.com/godbus/dbus/v5 v5.1.0 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.4 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/snappy v0.0.5-0.20220116011046-fa5810519dcb // indirect
github.com/google/go-github v17.0.0+incompatible // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/gopacket v1.1.19 // indirect
Expand All @@ -79,6 +79,7 @@ require (
github.com/gorilla/websocket v1.5.0 // indirect
github.com/hashicorp/go-version v1.6.0 // indirect
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d // indirect
github.com/holiman/uint256 v1.2.2 // indirect
github.com/huin/goupnp v1.0.3 // indirect
github.com/iancoleman/orderedmap v0.2.0 // indirect
github.com/iotaledger/grocksdb v1.7.5-0.20221128103803-fcdb79760195 // indirect
Expand All @@ -89,7 +90,7 @@ require (
github.com/jbenet/go-temp-err-catcher v0.1.0 // indirect
github.com/jbenet/goprocess v0.1.4 // indirect
github.com/jellydator/ttlcache/v2 v2.11.1 // indirect
github.com/klauspost/compress v1.15.14 // indirect
github.com/klauspost/compress v1.15.15 // indirect
github.com/klauspost/cpuid/v2 v2.2.3 // indirect
github.com/knadh/koanf v1.5.0 // indirect
github.com/koron/go-ssdp v0.0.3 // indirect
Expand Down Expand Up @@ -160,17 +161,17 @@ require (
go.uber.org/fx v1.19.1 // indirect
go.uber.org/multierr v1.9.0 // indirect
go.uber.org/zap v1.24.0 // indirect
golang.org/x/exp v0.0.0-20230118134722-a68e582fa157 // indirect
golang.org/x/mod v0.7.0 // indirect
golang.org/x/net v0.5.0 // indirect
golang.org/x/exp v0.0.0-20230206171751-46f607a40771 // indirect
golang.org/x/mod v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/text v0.6.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.5.0 // indirect
golang.org/x/tools v0.7.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/genproto v0.0.0-20230117162540-28d6b9783ac4 // indirect
google.golang.org/protobuf v1.28.1 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
gotest.tools/v3 v3.4.0 // indirect
Expand Down
Loading

0 comments on commit 9a57a2d

Please sign in to comment.