Skip to content

Commit 20b7378

Browse files
committed
Bump dependencies (#443)
1 parent c94c500 commit 20b7378

File tree

8 files changed

+23
-25
lines changed

8 files changed

+23
-25
lines changed

Cartfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
github "cezheng/Fuzi" ~> 3.1.3
1+
github "cezheng/Fuzi" ~> 3.1.0
22
github "dexman/Minizip" ~> 1.4.0
3-
github "krzyzanowskim/CryptoSwift" == 1.5.1 # From 1.6.0, the build fails in GitHub actions
3+
github "krzyzanowskim/CryptoSwift" ~> 1.8.0
44
github "ra1028/DifferenceKit" ~> 1.3.0
55
github "readium/GCDWebServer" ~> 4.0.0
6-
github "scinfu/SwiftSoup" == 2.5.3 # 2.6.0 requires Xcode 14
7-
github "stephencelis/SQLite.swift" ~> 0.15.3
8-
github "weichsel/ZIPFoundation" == 0.9.11 # 0.9.12 requires iOS 12+
6+
github "scinfu/SwiftSoup" ~> 2.7.0
7+
github "stephencelis/SQLite.swift" ~> 0.15.0
8+
github "weichsel/ZIPFoundation" ~> 0.9.0

Package.swift

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,14 @@ let package = Package(
2323
.library(name: "ReadiumAdapterLCPSQLite", targets: ["ReadiumAdapterLCPSQLite"]),
2424
],
2525
dependencies: [
26-
.package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.3"),
27-
// From 1.6.0, the build fails in GitHub actions with Carthage
28-
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", "1.5.1" ..< "1.6.0"),
29-
.package(url: "https://github.com/marmelroy/Zip.git", from: "2.1.2"),
26+
.package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.0"),
27+
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.8.0"),
28+
.package(url: "https://github.com/marmelroy/Zip.git", from: "2.1.0"),
3029
.package(url: "https://github.com/ra1028/DifferenceKit.git", from: "1.3.0"),
3130
.package(url: "https://github.com/readium/GCDWebServer.git", from: "4.0.0"),
32-
// From 2.6.0, Xcode 14 is required
33-
.package(url: "https://github.com/scinfu/SwiftSoup.git", "2.5.3" ..< "2.6.0"),
34-
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.3"),
35-
// 0.9.12 requires iOS 12+
36-
.package(url: "https://github.com/weichsel/ZIPFoundation.git", "0.9.0" ..< "0.9.12"),
31+
.package(url: "https://github.com/scinfu/SwiftSoup.git", from: "2.7.0"),
32+
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.15.0"),
33+
.package(url: "https://github.com/weichsel/ZIPFoundation.git", from: "0.9.0"),
3734
],
3835
targets: [
3936
.target(

Support/CocoaPods/ReadiumAdapterLCPSQLite.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Pod::Spec.new do |s|
1313
s.ios.deployment_target = "13.0"
1414
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
1515

16+
s.dependency 'ReadiumLCP'
1617
s.dependency 'ReadiumShared'
17-
s.dependency 'SQLite.swift', '~> 0.15.3'
18+
s.dependency 'SQLite.swift', '~> 0.15.0'
1819

1920
end

Support/CocoaPods/ReadiumLCP.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ Pod::Spec.new do |s|
2121

2222
s.dependency 'ReadiumShared'
2323
s.dependency 'ReadiumInternal'
24-
s.dependency 'ZIPFoundation', '<= 0.9.11' # 0.9.12 requires iOS 12+
25-
s.dependency 'CryptoSwift', '<= 1.5.1' # From 1.6.0, the build fails in GitHub actions with Carthage
24+
s.dependency 'ZIPFoundation', '~> 0.9.0'
25+
s.dependency 'CryptoSwift', '~> 1.8.0'
2626
end

Support/CocoaPods/ReadiumNavigator.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@ Pod::Spec.new do |s|
2020
s.dependency 'ReadiumShared'
2121
s.dependency 'ReadiumInternal'
2222
s.dependency 'DifferenceKit', '~> 1.0'
23-
s.dependency 'SwiftSoup', '<= 2.5.3' # From 2.6.0, Xcode 14 is required
23+
s.dependency 'SwiftSoup', '~> 2.7.0'
2424

2525
end

Support/CocoaPods/ReadiumOPDS.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ Pod::Spec.new do |s|
1818

1919
s.dependency 'ReadiumShared'
2020
s.dependency 'ReadiumInternal'
21-
s.dependency 'Fuzi', '~> 3.0'
21+
s.dependency 'Fuzi', '~> 3.1.0'
2222

2323
end

Support/CocoaPods/ReadiumShared.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ Pod::Spec.new do |s|
1919
s.libraries = "xml2"
2020
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
2121

22-
s.dependency 'Fuzi', '~> 3.0'
23-
s.dependency 'Minizip', '~> 1.0'
24-
s.dependency 'SwiftSoup', '<= 2.5.3' # From 2.6.0, Xcode 14 is required
22+
s.dependency 'Fuzi', '~> 3.1.0'
23+
s.dependency 'Minizip', '~> 1.0.0'
24+
s.dependency 'SwiftSoup', '~> 2.7.0'
2525
s.dependency 'ReadiumInternal'
2626

2727
end

Support/CocoaPods/ReadiumStreamer.podspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ Pod::Spec.new do |s|
2222

2323
s.dependency 'ReadiumShared'
2424
s.dependency 'ReadiumInternal'
25-
s.dependency 'CryptoSwift', '<= 1.5.1' # From 1.6.0, the build fails in GitHub actions
26-
s.dependency 'Fuzi', '~> 3.0'
25+
s.dependency 'CryptoSwift', '~> 1.8.0'
26+
s.dependency 'Fuzi', '~> 3.1.0'
2727
s.dependency 'ReadiumGCDWebServer', '~> 4.0.0'
28-
s.dependency 'Minizip', '~> 1.0'
28+
s.dependency 'Minizip', '~> 1.0.0'
2929

3030
end

0 commit comments

Comments
 (0)