Browse Source

CHANGELOG and version bump

pull/456/head
Ethan Buchman 8 years ago
parent
commit
7d5b62b61f
2 changed files with 22 additions and 1 deletions
  1. +21
    -0
      CHANGELOG.md
  2. +1
    -1
      version.go

+ 21
- 0
CHANGELOG.md View File

@ -1,5 +1,26 @@
# Changelog
## 0.5.0 (April 18, 2017)
BREAKING CHANGES:
- Remove or unexport methods from FuzzedConnection: Active, Mode, ProbDropRW, ProbDropConn, ProbSleep, MaxDelayMilliseconds, Fuzz
- switch.AddPeerWithConnection is unexported and replaced by switch.AddPeer
- switch.DialPeerWithAddress takes a bool, setting the peer as persistent or not
FEATURES:
- Persistent peers: any peer considered a "seed" will be reconnected to when the connection is dropped
IMPROVEMENTS:
- Many more tests and comments
- Refactor configurations for less dependence on go-config. Introduces new structs PeerConfig, MConnConfig, FuzzConnConfig
- New methods on peer: CloseConn, HandshakeTimeout, IsPersistent, Addr, PubKey
- NewNetAddress supports a testing mode where the address defaults to 0.0.0.0:0
## 0.4.0 (March 6, 2017)
BREAKING CHANGES:


+ 1
- 1
version.go View File

@ -1,3 +1,3 @@
package p2p
const Version = "0.4.0" // DialSeeds returns an error
const Version = "0.5.0"

Loading…
Cancel
Save