Marcin Krzyzanowski 5 years ago
parent
commit
90e5b7af82
3 changed files with 8 additions and 2 deletions
  1. 6 0
      CHANGELOG
  2. 1 1
      CryptoSwift.podspec
  3. 1 1
      config/Project-Shared.xcconfig

+ 6 - 0
CHANGELOG

@@ -1,3 +1,9 @@
+1.1.3
+- Fix build crash: https://bugs.swift.org/browse/SR-11630
+- Fixes Xcode project tests build
+- SwiftFormat all the things
+- Increase/fix SHA2 data length for big input by use Int64 for calculation
+
 1.1.2
 1.1.2
 - Fix Swift 5.0 build (for real this time)
 - Fix Swift 5.0 build (for real this time)
 
 

+ 1 - 1
CryptoSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
 Pod::Spec.new do |s|
   s.name         = "CryptoSwift"
   s.name         = "CryptoSwift"
-  s.version      = "1.1.2"
+  s.version      = "1.1.3"
   s.source       = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
   s.source       = { :git => "https://github.com/krzyzanowskim/CryptoSwift.git", :tag => "#{s.version}" }
   s.summary      = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, CMAC, HDKF, Scrypt, ChaCha20, Rabbit, Blowfish, AES."
   s.summary      = "Cryptography in Swift. SHA, MD5, CRC, PBKDF, Poly1305, HMAC, CMAC, HDKF, Scrypt, ChaCha20, Rabbit, Blowfish, AES."
   s.description  = "Cryptography functions and helpers for Swift implemented in Swift. SHA-1, SHA-2, SHA-3, MD5, PBKDF1, PBKDF2, Scrypt, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES"
   s.description  = "Cryptography functions and helpers for Swift implemented in Swift. SHA-1, SHA-2, SHA-3, MD5, PBKDF1, PBKDF2, Scrypt, CRC, Poly1305, HMAC, ChaCha20, Rabbit, Blowfish, AES"

+ 1 - 1
config/Project-Shared.xcconfig

@@ -5,7 +5,7 @@
 // https://github.com/dempseyatgithub/BuildSettingExtractor
 // https://github.com/dempseyatgithub/BuildSettingExtractor
 //
 //
 
 
-MARKETING_VERSION = 1.1.2
+MARKETING_VERSION = 1.1.3
 
 
 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator
 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator