Skip to content

Commit 2757d6a

Browse files
authored
2.2.0 (#93)
1 parent f85452f commit 2757d6a

File tree

6 files changed

+12
-13
lines changed

6 files changed

+12
-13
lines changed

opds/.github/workflows/build.yml

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

1718
steps:
1819
- name: Checkout
@@ -30,9 +31,7 @@ jobs:
3031
rm -rf readium-opds.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
- name: Test
3636
run: |
37-
device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`
3837
xcodebuild test-without-building -scheme "$scheme" -destination "platform=$platform,name=$device"

opds/Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "readium/r2-shared-swift" "develop"
1+
github "readium/r2-shared-swift" ~> 2.2.0
22
github "cezheng/Fuzi" ~> 3.1.3

opds/Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
github "cezheng/Fuzi" "3.1.3"
22
github "dexman/Minizip" "1.4.0"
3-
github "readium/r2-shared-swift" "ce8792022235cbc731e6d6731968f3ceb04b7674"
4-
github "scinfu/SwiftSoup" "2.3.2"
3+
github "readium/r2-shared-swift" "2.2.0"
4+
github "scinfu/SwiftSoup" "2.3.3"

opds/Package.resolved

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

opds/Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
],
2020
dependencies: [
2121
.package(url: "https://github.com/cezheng/Fuzi.git", from: "3.1.3"),
22-
.package(url: "https://github.com/readium/r2-shared-swift.git", .branch("develop")),
22+
.package(url: "https://github.com/readium/r2-shared-swift.git", from: "2.2.0"),
2323
],
2424
targets: [
2525
.target(

opds/ReadiumOPDS.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 = "ReadiumOPDS"
4-
s.version = "2.1.0"
4+
s.version = "2.2.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium OPDS"
77
s.homepage = "http://readium.github.io"
88
s.author = { "Readium" => "contact@readium.org" }
9-
s.source = { :git => "https://github.com/readium/r2-opds-swift.git", :branch => 'develop' }
9+
s.source = { :git => "https://github.com/readium/r2-opds-swift.git", :tag => '2.2.0' }
1010
s.exclude_files = ["**/Info*.plist"]
1111
s.requires_arc = true
1212
s.resources = ['readium-opds/Resources/**']

0 commit comments

Comments
 (0)