Skip to content

Commit

Permalink
Update 1.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
krzyzanowskim committed Nov 22, 2020
1 parent 1e6c6ea commit 1573c24
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
1.3.6
- Fix macOS binary
- Windows support

1.3.5
Expand Down
2 changes: 1 addition & 1 deletion CryptoSwift.podspec
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"])
]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion config/Project-Shared.xcconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
MARKETING_VERSION = 1.3.5
MARKETING_VERSION = 1.3.6

SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator

Expand Down

0 comments on commit 1573c24

Please sign in to comment.