Selaa lähdekoodia

1.3.5 release

Marcin Krzyzanowski 4 vuotta sitten
vanhempi
commit
04500de6c2
5 muutettua tiedostoa jossa 9 lisäystä ja 6 poistoa
  1. 3 0
      CHANGELOG
  2. 1 1
      CryptoSwift.podspec
  3. 2 2
      Package.swift
  4. 2 2
      README.md
  5. 1 1
      config/Project-Shared.xcconfig

+ 3 - 0
CHANGELOG

@@ -1,3 +1,6 @@
+1.3.5
+- Re-release binary framework due to codesign issue
+
 1.3.4
 - Distribute optimized binary (xcframework) via SPM for apple platforms
 

+ 1 - 1
CryptoSwift.podspec

@@ -1,6 +1,6 @@
 Pod::Spec.new do |s|
   s.name         = "CryptoSwift"
-  s.version      = "1.3.4"
+  s.version      = "1.3.5"
   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.4/CryptoSwift.xcframework.zip",
-        checksum: "0072dd9a3bd76f0bf4922ad88424fcff8301502446e550a8f6c86c63692b7592"
+        url: "https://github.com/krzyzanowskim/CryptoSwift/releases/download/1.3.5/CryptoSwift.xcframework.zip",
+        checksum: "6368602213b62cc8d5ec2f12ee0b593fdb963cb1b0c30ea98af4a14689fd601a"
     ),
     .testTarget(name: "TestsPerformance", dependencies: ["CryptoSwift"])
   ]

+ 2 - 2
README.md

@@ -113,7 +113,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.4"))
+.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMinor(from: "1.3.5"))
 ```
 
 See: [Package.swift - manual](http://blog.krzyzanowskim.com/2016/08/09/package-swift-manual/)
@@ -125,7 +125,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.4'
+pod 'CryptoSwift', '~> 1.3.5'
 ```
 
 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.4
+MARKETING_VERSION = 1.3.5
 
 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator