From 678d442c6f7828def400a70ae15968aef67ef52d Mon Sep 17 00:00:00 2001 From: Marcin Krzyzanowski Date: Mon, 5 Aug 2024 19:12:32 +0200 Subject: [PATCH] 1.8.3 Release --- CHANGELOG | 4 ++++ CryptoSwift.podspec | 2 +- README.md | 6 +++--- config/Project-Shared.xcconfig | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 6a314043..950a2a3c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +1.8.3 +- Remove whitespace from the filename to please bezel build system +- minors + 1.8.2 - Enable VisionOS as supported platform for Xcode project and SwiftPM package - Tweak CocoaPods setup for privacy manifest diff --git a/CryptoSwift.podspec b/CryptoSwift.podspec index e9374593..1090ae55 100644 --- a/CryptoSwift.podspec +++ b/CryptoSwift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "CryptoSwift" - s.version = "1.8.2" + s.version = "1.8.3" 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 43a93d1b..b2a9b4a2 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ The financial sustainability of the project is possible thanks to the ongoing co [Emerge Tools](https://www.emergetools.com/) is a suite of revolutionary products designed to supercharge mobile apps and the teams that build them. [www.emergetools.com/](https://www.emergetools.com) - + ## Requirements Good mood @@ -131,7 +131,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.8.2")) +.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.3") ``` See: [Package.swift - manual](https://blog.krzyzanowskim.com/2016/08/09/package-swift-manual/) @@ -143,7 +143,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.8.2' +pod 'CryptoSwift', '~> 1.8.3' ``` 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 36205eb2..680e3def 100644 --- a/config/Project-Shared.xcconfig +++ b/config/Project-Shared.xcconfig @@ -1,4 +1,4 @@ -MARKETING_VERSION = 1.8.2 +MARKETING_VERSION = 1.8.3 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator xrsimulator xros