From 21f1b26c594f3f9f1eb1368b72bc1edfc07e0b80 Mon Sep 17 00:00:00 2001 From: alephao <7674479+alephao@users.noreply.github.com> Date: Sun, 28 Jan 2024 18:12:04 -0300 Subject: [PATCH] 0.0.5 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cf29f5..27e2844 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # RLPSwift [![Swift 5.9.2](https://img.shields.io/badge/Swift-5.9.2-orange.svg?style=flat)](https://developer.apple.com/swift/) -[![Version](https://img.shields.io/badge/SPM-0.0.4-orange.svg?stlyle=flat)](https://github.com/alephao/RLPSwift/releases/tag/v0.0.4) +[![Version](https://img.shields.io/badge/SPM-0.0.5-orange.svg?stlyle=flat)](https://github.com/alephao/RLPSwift/releases/tag/v0.0.5) This is a basic Swift implementation of Recursive Length Prefix Encoding, a serialisation method for encoding arbitrarily structured binary data (byte arrays). @@ -35,7 +35,7 @@ Adding RLPSwift as a dependency is as easy as adding it to the `dependencies` va ```swift dependencies: [ - .package(url: "https://github.com/alephao/RLPSwift.git", from: "0.0.4") + .package(url: "https://github.com/alephao/RLPSwift.git", from: "0.0.5") ] ```