Quellcode durchsuchen

Bump version 1.7.0

Marcin Krzyzanowski vor 2 Jahren
Ursprung
Commit
95c18f1c1b
6 geänderte Dateien mit 12 neuen und 5 gelöschten Zeilen
  1. 6 0
      CHANGELOG
  2. 1 0
      CONTRIBUTORS.txt
  3. 1 1
      CryptoSwift.podspec
  4. 1 1
      Package.swift
  5. 2 2
      README.md
  6. 1 1
      config/Project-Shared.xcconfig

+ 6 - 0
CHANGELOG

@@ -1,3 +1,9 @@
+1.7.0
+- Fix compilation warnings
+- Ignore unknown character for base64 decoding
+- Bump minimum targets (for Xcode)
+- Xcode project disable bitcode (Building with bitcode is deprecated)
+
 1.6.0
 - Improve & extend RSA support with DER (see README for details)
 - Fix Blowfish memory leaks

+ 1 - 0
CONTRIBUTORS.txt

@@ -48,6 +48,7 @@ organizations who have contributed source code to CryptoSwift.
 - Howtin <gonghao@ghsky.com>
 - Ibrahim Kteish <ibrahimk@vinelab.com>
 - Igor Camilo <igor.rcamilo@gmail.com>
+- JP Simard <jp@jpsim.com>
 - Javier Soto <javiers@twitter.com>
 - Jeremy Greenwood <jeremy@mobelux.com>
 - Jimmie Johansson <jim@svep.se>

+ 1 - 1
CryptoSwift.podspec

@@ -11,7 +11,7 @@ Pod::Spec.new do |s|
   s.cocoapods_version = '>= 1.10.0'
   s.swift_version = "5.6"
   s.ios.deployment_target = "11.0"
-  s.osx.deployment_target = "10.12"
+  s.osx.deployment_target = "10.13"
   s.watchos.deployment_target = "4.0"
   s.tvos.deployment_target = "11.0"
   s.source_files  = "Sources/CryptoSwift/**/*.swift"

+ 1 - 1
Package.swift

@@ -5,7 +5,7 @@ import PackageDescription
 let package = Package(
   name: "CryptoSwift",
   platforms: [
-    .macOS(.v10_12), .iOS(.v9), .tvOS(.v9), .watchOS(.v2)
+    .macOS(.v10_13), .iOS(.v11), .tvOS(.v11), .watchOS(.v4)
   ],
   products: [
     .library(

+ 2 - 2
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.6.0"))
+.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", .upToNextMajor(from: "1.7.0"))
 ```
 
 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.6.0'
+pod 'CryptoSwift', '~> 1.7.0'
 ```
 
 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.6.0
+MARKETING_VERSION = 1.7.0
 
 SUPPORTED_PLATFORMS = iphonesimulator iphoneos macosx appletvos watchos appletvsimulator watchsimulator