From b8a3592da730c9e64a7f3b6e2288e7c8ae3677a9 Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Thu, 9 Apr 2020 13:21:15 +0300 Subject: [PATCH] Increase the version lower bound of BBD to 1.4.3 This version of BBD improves compatibility with Swift 4.2. --- Cartfile | 2 +- Package.swift | 2 +- Package@swift-4.2.swift | 2 +- SWCompression.podspec | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cartfile b/Cartfile index e879c41f..934643de 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "tsolomko/BitByteData" ~> 1.4.2 +github "tsolomko/BitByteData" ~> 1.4.3 diff --git a/Package.swift b/Package.swift index b831b146..d957f93e 100644 --- a/Package.swift +++ b/Package.swift @@ -13,7 +13,7 @@ let package = Package( // .package(url: "https://github.com/jakeheis/SwiftCLI", // from: "5.2.0"), .package(url: "https://github.com/tsolomko/BitByteData", - from: "1.4.2"), + from: "1.4.3"), ], targets: [ // SWCOMP: Uncomment the lines below to build swcomp example program. diff --git a/Package@swift-4.2.swift b/Package@swift-4.2.swift index ff86bc92..33ca19c7 100644 --- a/Package@swift-4.2.swift +++ b/Package@swift-4.2.swift @@ -13,7 +13,7 @@ let package = Package( // .package(url: "https://github.com/jakeheis/SwiftCLI", // from: "5.2.0"), .package(url: "https://github.com/tsolomko/BitByteData", - from: "1.4.2"), + from: "1.4.3"), ], targets: [ // SWCOMP: Uncomment the lines below to build swcomp example program. diff --git a/SWCompression.podspec b/SWCompression.podspec index 1066f298..6b64dd08 100644 --- a/SWCompression.podspec +++ b/SWCompression.podspec @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.swift_versions = ["4", "5"] - s.dependency "BitByteData", "~> 1.4.2" + s.dependency "BitByteData", "~> 1.4.3" s.subspec "Deflate" do |sp| sp.source_files = "Sources/{Deflate/*,Common/*,Common/CodingTree/*}.swift"