Skip to content

Releases: alephao/swift-rlp

v0.0.6

29 Jan 16:15
Compare
Choose a tag to compare

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

28 Jan 21:14
Compare
Choose a tag to compare

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

03 Oct 09:46
Compare
Choose a tag to compare
  • Update to Swift 5.0
  • Add support to Swift Package manager

v0.0.3

03 Feb 03:22
Compare
Choose a tag to compare

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

03 Feb 03:17
Compare
Choose a tag to compare

Changes

  • Removed UIKit framework, using Foundation instead

v0.0.1

31 Jan 14:09
Compare
Choose a tag to compare

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"])