Skip to content

Commit 95c18f1

Browse files
committed
Bump version 1.7.0
1 parent 989b00c commit 95c18f1

File tree

6 files changed

+12
-5
lines changed

6 files changed

+12
-5
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
1.7.0
2+
- Fix compilation warnings
3+
- Ignore unknown character for base64 decoding
4+
- Bump minimum targets (for Xcode)
5+
- Xcode project disable bitcode (Building with bitcode is deprecated)
6+
17
1.6.0
28
- Improve & extend RSA support with DER (see README for details)
39
- Fix Blowfish memory leaks

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ organizations who have contributed source code to CryptoSwift.
4848
- Howtin <gonghao@ghsky.com>
4949
- Ibrahim Kteish <ibrahimk@vinelab.com>
5050
- Igor Camilo <igor.rcamilo@gmail.com>
51+
- JP Simard <jp@jpsim.com>
5152
- Javier Soto <javiers@twitter.com>
5253
- Jeremy Greenwood <jeremy@mobelux.com>
5354
- Jimmie Johansson <jim@svep.se>

CryptoSwift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
1111
s.cocoapods_version = '>= 1.10.0'
1212
s.swift_version = "5.6"
1313
s.ios.deployment_target = "11.0"
14-
s.osx.deployment_target = "10.12"
14+
s.osx.deployment_target = "10.13"
1515
s.watchos.deployment_target = "4.0"
1616
s.tvos.deployment_target = "11.0"
1717
s.source_files = "Sources/CryptoSwift/**/*.swift"

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import PackageDescription
55
let package = Package(
66
name: "CryptoSwift",
77
platforms: [
8-
.macOS(.v10_12), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
8+
.macOS(.v10_13), .iOS(.v11), .tvOS(.v11), .watchOS(.v4)
99
],
1010
products: [
1111
.library(

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ It is recommended to enable [Whole-Module Optimization](https://swift.org/blog/w
127127
You can use [Swift Package Manager](https://swift.org/package-manager/) and specify dependency in `Package.swift` by adding this:
128128

129129
```swift
130-
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.6.0"))
130+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.7.0"))
131131
```
132132

133133
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
139139
You can use [CocoaPods](https://cocoapods.org/pods/CryptoSwift).
140140

141141
```ruby
142-
pod 'CryptoSwift', '~> 1.6.0'
142+
pod 'CryptoSwift', '~> 1.7.0'
143143
```
144144

145145
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.

config/Project-Shared.xcconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
MARKETING_VERSION = 1.6.0
1+
MARKETING_VERSION = 1.7.0
22

33
SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator
44

0 commit comments

Comments
 (0)