Skip to content

Commit aeabb25

Browse files
authored
Release v0.9.3 (#2347)
1 parent 6f5e91b commit aeabb25

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# v0.9.3 - 2022-07-19
2+
3+
> This release introduces bugfixes and improvements found in the previous release.
4+
5+
The snapshot has been changed and thus the ledger state is fully reset.
6+
7+
- Fix remote log collection (#2343)
8+
- Fix marker walk during tip fishing (#2346)
9+
- Fix: P2P protocol initialization (#2340)
10+
- Update default TSC threshold (#2342)
11+
- Improve tangle time used to calculate active cMana nodes. (#2338)
12+
- Fix: do not trigger BlockRateLimiter if not bootstrapped (#2341)
13+
- Notarization: do not care if attachment is booked when dealing with conflict events (#2336)
14+
- Introduce by epoch index localized BlockID (#2331)
15+
- Update docker-compose params (#2335)
16+
- Support additional protocols on top of P2P connection (#2330)
17+
118
# v0.9.2 - 2022-07-14
219

320
> This release introduces the epoch commitments feature which allows creating proofs-of-inclusion of a block in the tangle. This feature is also the first step to the development of pruning, local snapshots and will allow more efficient way of syncing a node. This release also improves the parameters of rate-setter that should improve user-experience of issuing new blocks. It also contains various bugfixes and improvements, change of terminology e.g. message -> block etc. as well as replacement of grades of finality with confirmation state.

plugins/autopeering/discovery/parameters.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import "github.com/iotaledger/hive.go/configuration"
55
// ParametersDefinitionDiscovery contains the definition of configuration parameters used by the autopeering peer discovery.
66
type ParametersDefinitionDiscovery struct {
77
// NetworkVersion defines the config flag of the network version.
8-
NetworkVersion uint32 `default:"60" usage:"autopeering network version"`
8+
NetworkVersion uint32 `default:"61" usage:"autopeering network version"`
99

1010
// EntryNodes defines the config flag of the entry nodes.
1111
EntryNodes []string `default:"2PV5487xMw5rasGBXXWeqSi4hLz7r19YBt8Y1TGAsQbj@analysisentry-01.devnet.shimmer.iota.cafe:15626,5EDH4uY78EA6wrBkHHAVBWBMDt7EcksRq6pjzipoW15B@entry-0.devnet.tanglebay.com:14646,CAB87iQZR6BjBrCgEBupQJ4gpEBgvGKKv3uuGVRBKb4n@entry-1.devnet.tanglebay.com:14646" usage:"list of trusted entry nodes for auto peering"`

plugins/banner/plugin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var (
1515
Plugin = node.NewPlugin(PluginName, nil, node.Enabled, configure, run)
1616

1717
// AppVersion version number
18-
AppVersion = "v0.9.2"
18+
AppVersion = "v0.9.3"
1919
// SimplifiedAppVersion is the version number without commit hash
2020
SimplifiedAppVersion = simplifiedVersion(AppVersion)
2121
)

plugins/database/versioning.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
const (
1212
// DBVersion defines the version of the database schema this version of GoShimmer supports.
1313
// Every time there's a breaking change regarding the stored data, this version flag should be adjusted.
14-
DBVersion = 60
14+
DBVersion = 61
1515
)
1616

1717
var (

0 commit comments

Comments
 (0)