From 16b9728e067ede82e01fabfe432d4b6874a451ff Mon Sep 17 00:00:00 2001 From: Timofey Solomko Date: Sat, 8 Jun 2019 22:20:23 +0300 Subject: [PATCH] Increase the version lower bound of BBD to 1.4.1 That version of BBD comes with a fix for incompatibility problems with Swift 5. --- Cartfile | 2 +- Package.swift | 2 +- SWCompression.podspec | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cartfile b/Cartfile index 4025b2c3..5b1c387b 100644 --- a/Cartfile +++ b/Cartfile @@ -1 +1 @@ -github "tsolomko/BitByteData" ~> 1.4 +github "tsolomko/BitByteData" ~> 1.4.1 diff --git a/Package.swift b/Package.swift index 15c77670..cd3ed74f 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.0"), + from: "1.4.1"), ], targets: [ // SWCOMP: Uncomment the lines below to build swcomp example program. diff --git a/SWCompression.podspec b/SWCompression.podspec index e00a0841..e5c444f2 100644 --- a/SWCompression.podspec +++ b/SWCompression.podspec @@ -22,7 +22,7 @@ Pod::Spec.new do |s| s.swift_version = "4.2" - s.dependency "BitByteData", "~> 1.4.0" + s.dependency "BitByteData", "~> 1.4.1" s.subspec "Deflate" do |sp| sp.source_files = "Sources/{Deflate/*,Common/*,Common/CodingTree/*}.swift"