Releases: alephao/swift-rlp
Releases · alephao/swift-rlp
v0.0.6
Complete Remake
- Instead of using the RLP.encode static func, now you need to c reate an RLPEncoder or RLPDecoder to encode/decode.
- Added a cli utility
v0.0.5
What's Changed
- Update to Swift 5.9
- Invert order of arguments in the encode function, now the string encoding configuration comes first
- Remove support for cocoapods
Full Changelog: v0.0.4...v0.0.5
v0.0.4
- Update to Swift 5.0
- Add support to Swift Package manager
v0.0.3
Changes
- Now all encoding methods returns
Data
- Now the user can specify the character encoding scheme when encoding String and nested arrays of String
- Enhanced RLP.Error localized descriptions
v0.0.2
Changes
- Removed UIKit framework, using Foundation instead
v0.0.1
RLP Encoding for strings and nested string arrays
Features
- Encode strings using
RLP.encode("my string")
- Encode nested string arrays using
RLP.encode(["dog", ["cat", "lionr"], "wolf"])