浏览代码

Bump version 0.6.5

Marcin Krzyżanowski 8 年之前
父节点
当前提交
d2cbdb1a13
共有 5 个文件被更改,包括 10 次插入8 次删除
  1. 4 0
      CHANGELOG
  2. 1 1
      CryptoSwift.podspec
  3. 4 4
      CryptoSwift.xcodeproj/project.pbxproj
  4. 1 1
      Sources/CryptoSwift/Info.plist
  5. 0 2
      Sources/CryptoSwift/Updatable.swift

+ 4 - 0
CHANGELOG

@@ -1,3 +1,7 @@
+0.6.5
+- Significant performance improvement when processing lange amount of data.
+- Degeneric functions and change Sequence -> Collection in generic constraints.
+
 0.6.4
 - More performance improvements
 - Add convenient Digest.sha2(bytes:variant)

+ 1 - 1
CryptoSwift.podspec

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

+ 4 - 4
CryptoSwift.xcodeproj/project.pbxproj

@@ -729,7 +729,7 @@
 				SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator";
 				SWIFT_INSTALL_OBJC_HEADER = NO;
 				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
-				SWIFT_VERSION = 3.0;
+				SWIFT_VERSION = 3.0.1;
 				TARGETED_DEVICE_FAMILY = "1,2,3,4";
 				TVOS_DEPLOYMENT_TARGET = 9.0;
 				VERSIONING_SYSTEM = "apple-generic";
@@ -778,7 +778,7 @@
 				PRODUCT_NAME = CryptoSwift;
 				SUPPORTED_PLATFORMS = "iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator";
 				SWIFT_INSTALL_OBJC_HEADER = NO;
-				SWIFT_VERSION = 3.0;
+				SWIFT_VERSION = 3.0.1;
 				TARGETED_DEVICE_FAMILY = "1,2,3,4";
 				TVOS_DEPLOYMENT_TARGET = 9.0;
 				VALIDATE_PRODUCT = YES;
@@ -805,7 +805,7 @@
 				PRODUCT_NAME = CryptoSwift;
 				SKIP_INSTALL = YES;
 				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
-				SWIFT_VERSION = 3.0;
+				SWIFT_VERSION = 3.0.1;
 				TVOS_DEPLOYMENT_TARGET = 9.0;
 				WATCHOS_DEPLOYMENT_TARGET = 2.0;
 			};
@@ -832,7 +832,7 @@
 				SKIP_INSTALL = YES;
 				SWIFT_DISABLE_SAFETY_CHECKS = YES;
 				SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
-				SWIFT_VERSION = 3.0;
+				SWIFT_VERSION = 3.0.1;
 				TVOS_DEPLOYMENT_TARGET = 9.0;
 				WATCHOS_DEPLOYMENT_TARGET = 2.0;
 			};

+ 1 - 1
Sources/CryptoSwift/Info.plist

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

+ 0 - 2
Sources/CryptoSwift/Updatable.swift

@@ -5,8 +5,6 @@
 //  Created by Marcin Krzyzanowski on 06/05/16.
 //  Copyright © 2016 Marcin Krzyzanowski. All rights reserved.
 //
-//  TODO: Consider if Updatable shoud use Collection rather than Sequence
-//
 
 /// A type that supports incremental updates. For example Digest or Cipher may be updatable
 /// and calculate result incerementally.