Эх сурвалжийг харах

Release 0.1.0. Update Readme.

Marcin Krzyżanowski 10 жил өмнө
parent
commit
0281ddabb9

+ 1 - 1
CryptoSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name         = "CryptoSwift"
-  s.version      = "0.0.16"
+  s.version      = "0.1.0"
   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"

+ 1 - 1
CryptoSwift/Info.plist

@@ -15,7 +15,7 @@
 	<key>CFBundlePackageType</key>
 	<string>FMWK</string>
 	<key>CFBundleShortVersionString</key>
-	<string>0.0.16</string>
+	<string>0.1.0</string>
 	<key>CFBundleSignature</key>
 	<string>????</string>
 	<key>CFBundleVersion</key>

+ 7 - 0
README.md

@@ -236,6 +236,13 @@ Permission is granted to anyone to use this software for any purpose, including
 
 ##Changelog
 
+0.1.0
+- Major performance improvements.
+- Transition from Optionals to throw error.
+- Replace enum Cipher with protocol for ciphers.
+- Added CRC16
+- Drop internal "Foundation" dependency, nonetheless it is supported as usual.
+
 0.0.16
 - Critical fix for private "md5" selector issue (#135)