Marcin Krzyzanowski vor 4 Jahren
Ursprung
Commit
1573c24cff
5 geänderte Dateien mit 8 neuen und 6 gelöschten Zeilen
  1. 2 0
      CHANGELOG
  2. 1 1
      CryptoSwift.podspec
  3. 2 2
      Package.swift
  4. 2 2
      README.md
  5. 1 1
      config/Project-Shared.xcconfig

+ 2 - 0
CHANGELOG

@@ -1,3 +1,5 @@
+1.3.6
+- Fix macOS binary
 - Windows support
 
 1.3.5

+ 1 - 1
CryptoSwift.podspec

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

+ 2 - 2
Package.swift

@@ -17,8 +17,8 @@ let package = Package(
   targets: [
     .binaryTarget(
         name: "CryptoSwift",
-        url: "https://github.com/krzyzanowskim/CryptoSwift/releases/download/1.3.5/CryptoSwift.xcframework.zip",
-        checksum: "6368602213b62cc8d5ec2f12ee0b593fdb963cb1b0c30ea98af4a14689fd601a"
+        url: "https://github.com/krzyzanowskim/CryptoSwift/releases/download/1.3.6/CryptoSwift.xcframework.zip",
+        checksum: "555f8e141dacb9f5a1635d7a5afa6cbee62709f3dba13f799c84e62339c2a2a8"
     ),
     .testTarget(name: "TestsPerformance", dependencies: ["CryptoSwift"])
   ]

+ 2 - 2
README.md

@@ -121,7 +121,7 @@ It is recommended to enable [Whole-Module Optimization](https://swift.org/blog/w
 You can use [Swift Package Manager](https://swift.org/package-manager/) and specify dependency in `Package.swift` by adding this:
 
 ```swift
-.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.5"))
+.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.6"))
 ```
 
 See: [Package.swift - manual](http://blog.krzyzanowskim.com/2016/08/09/package-swift-manual/)
@@ -133,7 +133,7 @@ Notice: Swift Package Manager uses debug configuration for debug Xcode build, th
 You can use [CocoaPods](https://cocoapods.org/pods/CryptoSwift).
 
 ```ruby
-pod 'CryptoSwift', '~> 1.3.5'
+pod 'CryptoSwift', '~> 1.3.6'
 ```
 
 Bear in mind that CocoaPods will build CryptoSwift without [Whole-Module Optimization](https://swift.org/blog/whole-module-optimizations/) that may impact performance. You can change it manually after installation, or use [cocoapods-wholemodule](https://github.com/jedlewison/cocoapods-wholemodule) plugin.

+ 1 - 1
config/Project-Shared.xcconfig

@@ -1,4 +1,4 @@
-MARKETING_VERSION = 1.3.5
+MARKETING_VERSION = 1.3.6
 
 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator