Releases: stickytools/sticky-encoding
Releases · stickytools/sticky-encoding
1.0.0 Beta 5 Release
Removed
- Simplified the interface removing the
EncodedData
type replacing it with straightArray<UInt8>
.
Added
- Changed return type of
BinaryEncoder.encode
fromEncodedData
toArray<UInt8>
. - Changed parameter type of
BinaryDecoder.decode
fromEncodedData
toArray<UInt8>
. - Moving binary conversion into decode/encode stage to improve error recovery on invalid binary input.
1.0.0 Beta 4 Release
- Adjustments to eliminate warnings for compiling on Xcode 10.2.
- Added complete documentation set available @ https://stickytools.io/sticky-encoding.
1.0.0 Beta 3
- Added support to/from
Swift.Data
toEncodedData
. - Changed EncodedData
var bytes: [UInt8]
toArray<UInt8>(_ encodedData: EncodedDate)
constructor.
1.0.0 Beta 2
- Added CocoaPods support.
- Added the ability to set a userInfo dictionary on the
BinaryEncoder
andBinaryDecoder
.
1.0.0 Beta 1
First beta release.