Forráskód Böngészése

Update README with information about CocoaPods. Release 0.0.7.

Marcin Krzyżanowski 10 éve
szülő
commit
8ff0e6d47f
2 módosított fájl, 9 hozzáadás és 1 törlés
  1. 1 1
      CryptoSwift.podspec
  2. 8 0
      README.md

+ 1 - 1
CryptoSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name         = "CryptoSwift"
-  s.version      = "0.0.6"
+  s.version      = "0.0.7"
   s.summary      = "Cryptography in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.description  = "Cryptography functions and helpers for Swift implemented in Swift. SHA, MD5, CRC, Poly1305, HMAC, ChaCha20, AES."
   s.homepage     = "https://github.com/krzyzanowskim/CryptoSwift"

+ 8 - 0
README.md

@@ -41,6 +41,8 @@ Good mood
 
 ##Installation
 
+For Swift 1.2 check **swift12** branch.
+
 To install CryptoSwift, add it as a submodule to your project (on the top level project directory):
 
 	git submodule add https://github.com/krzyzanowskim/CryptoSwift.git
@@ -50,6 +52,12 @@ Then, drag the CryptoSwift.xcodeproj file into your Xcode project, and add Crypt
 #####iOS and OSX
 By default project is setup for iOS. You need to switch to OSX SDK manually [see #8](https://github.com/krzyzanowskim/CryptoSwift/issues/8)
 
+####CococaPods
+
+You can use [CocoaPods](http://cocoapods.org/?q=cryptoSwift). You need version 0.36 or newer to use Swift framework.
+
+    pod 'CryptoSwift'
+
 ##Usage
 
     import CryptoSwift