Skip to content

Commit 8770155

Browse files
authored
2.2.0 (readium#132)
Former-commit-id: 53b3ae1
1 parent 7f27baa commit 8770155

File tree

6 files changed

+17
-19
lines changed

6 files changed

+17
-19
lines changed

lcp/.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
env:
1414
scheme: ${{ 'r2-lcp-swift' }}
1515
platform: ${{ 'iOS Simulator' }}
16+
device: ${{ 'iPhone 13' }}
1617

1718
steps:
1819
- name: Checkout
@@ -30,14 +31,11 @@ jobs:
3031
rm -rf r2-lcp-swift.xcodeproj
3132
- name: Build
3233
run: |
33-
device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
3434
xcodebuild build-for-testing -scheme "$scheme" -destination "platform=$platform,name=$device"
3535
# Tests require R2LCPClient.framework which is private.
3636
# - name: Test
3737
# run: |
38-
# device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
3938
# xcodebuild test-without-building -scheme "$scheme" -destination "platform=$platform,name=$device"
4039
- name: Analyze
4140
run: |
42-
device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
4341
xcodebuild analyze -scheme "$scheme" -destination "platform=$platform,name=$device"

lcp/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "krzyzanowskim/CryptoSwift" ~> 1.3.8
2-
github "readium/r2-shared-swift" "develop"
2+
github "readium/r2-shared-swift" ~> 2.2.0
33
github "stephencelis/SQLite.swift" ~> 0.12.2
44
github "weichsel/ZIPFoundation" == 0.9.11 # 0.9.12 requires iOS 12+

lcp/Cartfile.resolved

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github "cezheng/Fuzi" "3.1.3"
22
github "dexman/Minizip" "1.4.0"
3-
github "krzyzanowskim/CryptoSwift" "1.4.1"
4-
github "readium/r2-shared-swift" "7c66c3b7eb8711946b4fca4a1cce8f5ae0bc6bfe"
5-
github "scinfu/SwiftSoup" "2.3.2"
3+
github "krzyzanowskim/CryptoSwift" "1.4.2"
4+
github "readium/r2-shared-swift" "2.2.0"
5+
github "scinfu/SwiftSoup" "2.3.3"
66
github "stephencelis/SQLite.swift" "0.12.2"
77
github "weichsel/ZIPFoundation" "0.9.11"

lcp/Package.resolved

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lcp/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ let package = Package(
1818
],
1919
dependencies: [
2020
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.3.8"),
21-
.package(url: "https://github.com/readium/r2-shared-swift.git", .branch("develop")),
21+
.package(url: "https://github.com/readium/r2-shared-swift.git", from: "2.2.0"),
2222
.package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.2"),
2323
// 0.9.12 requires iOS 12+
2424
.package(url: "https://github.com/weichsel/ZIPFoundation.git", "0.9.0"..<"0.9.12"),

lcp/ReadiumLCP.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Pod::Spec.new do |s|
22

33
s.name = "ReadiumLCP"
4-
s.version = "2.1.1"
4+
s.version = "2.2.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium LCP"
77
s.homepage = "http://readium.github.io"
88
s.author = { "Readium" => "[email protected]" }
9-
s.source = { :git => "https://github.com/readium/r2-lcp-swift.git", :branch => "develop" }
9+
s.source = { :git => "https://github.com/readium/r2-lcp-swift.git", :tag => "2.2.0" }
1010
s.exclude_files = ["**/Info*.plist"]
1111
s.requires_arc = true
1212
s.resources = [

0 commit comments

Comments
 (0)