From 3013df6fd3dadf9dd0ccb7b101b7fbae8dfff465 Mon Sep 17 00:00:00 2001 From: Sathya Date: Mon, 23 Apr 2018 01:49:37 +0530 Subject: [PATCH] Update pod version --- Cryptex.podspec | 2 +- README.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cryptex.podspec b/Cryptex.podspec index 99dc183..6255ccb 100644 --- a/Cryptex.podspec +++ b/Cryptex.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "Cryptex" - s.version = "0.0.4" + s.version = "0.0.5" s.summary = "Cryptocurrency Exchange API Clients in Swift." s.description = <<-DESC Multiple crypto currency exchange api clients in swift. diff --git a/README.md b/README.md index e6cf5f9..79ed1e2 100644 --- a/README.md +++ b/README.md @@ -18,12 +18,12 @@ Cryptex, a single Swift 4 library and an iOS app to watch prices and check realt To install all exchanges ```ruby -pod 'Cryptex', '~> 0.0.4' +pod 'Cryptex', '~> 0.0.5' ``` To install only one exchange ```ruby -pod 'Cryptex/Gemini', '~> 0.0.4' +pod 'Cryptex/Gemini', '~> 0.0.5' ``` To install two or more exchanges @@ -34,14 +34,14 @@ pod 'Cryptex', '~> 0.0.4', :subspecs => ['Gemini', 'GDAX', "Poloniex"] #### Carthage (iOS 8+, OS X 10.9+) ``` -github "trsathya/Cryptex" ~> 0.0.4 +github "trsathya/Cryptex" ~> 0.0.5 ``` #### Swift Package Manager ```swift dependencies: [ - .Package(url: "https://github.com/trsathya/Cryptex.git", from: "0.0.4"), + .Package(url: "https://github.com/trsathya/Cryptex.git", from: "0.0.5"), ] ```