From 32f641cf24fc7abc1c591a2025e9f2f572648b0f Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Wed, 7 Jun 2023 23:26:11 +0100 Subject: [PATCH] 1.7.2 --- CHANGELOG | 4 ++++ CryptoSwift.podspec | 2 +- README.md | 4 ++-- config/Project-Shared.xcconfig | 2 +- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3fcbe07f..ab87f25d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +1.7.2 +- Validate RSA input values +- Minor updates + 1.7.1 - Address Swift 5.8 warnings diff --git a/CryptoSwift.podspec b/CryptoSwift.podspec index c3d72696..46388973 100644 --- a/CryptoSwift.podspec +++ b/CryptoSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CryptoSwift" - s.version = "1.7.1" + s.version = "1.7.2" 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, RSA." 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, RSA" diff --git a/README.md b/README.md index 6ffa3f6e..40bdf1a8 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,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", .upToNextMajor(from: "1.7.1")) +.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.7.2")) ``` See: [Package.swift - manual](http://blog.krzyzanowskim.com/2016/08/09/package-swift-manual/) @@ -139,7 +139,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.7.1' +pod 'CryptoSwift', '~> 1.7.2' ``` 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. diff --git a/config/Project-Shared.xcconfig b/config/Project-Shared.xcconfig index cd7946e6..4c4fa981 100644 --- a/config/Project-Shared.xcconfig +++ b/config/Project-Shared.xcconfig @@ -1,4 +1,4 @@ -MARKETING_VERSION = 1.7.1 +MARKETING_VERSION = 1.7.2 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator