v0.7.0
What's Changed
Breaking API change around the constructs in codec.go
.
- Removed
BlockingCodecConn
along with all its methods and constructors - Removed
NonblockingCodecConn
along with all its methods and constructors - The
CodecConn
interface is now astruct
. It implements the functionality of bothBlockingCodecConn
andNonblockingCodecConn
. - Users should replace
BlockingCodecConn
andNonblockingCodecConn
withCodecConn
.
Also removed the unused UDPMulticastClient
interface.
Full Changelog: v0.6.1...v0.7.0