Skip to content

Commit db89041

Browse files
Merge pull request #65 from readium/develop
V1.2.2
2 parents 0ceae98 + ff72c81 commit db89041

File tree

5 files changed

+30
-23
lines changed

5 files changed

+30
-23
lines changed

opds/.travis.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: swift
2-
osx_image: xcode10.1
2+
osx_image: xcode11
3+
xcode_project: readium-opds.xcodeproj
4+
xcode_scheme: readium-opds
5+
xcode_destination: platform=iOS Simulator,OS=11.3,name=iPhone X
6+
xcode_sdk: iphonesimulator13.0
37

48
branches:
59
only:
@@ -13,7 +17,8 @@ cache:
1317
before_install:
1418
- brew update
1519
- brew outdated carthage || brew upgrade carthage
16-
- carthage update --verbose --no-use-binaries --platform iOS --cache-builds
20+
- carthage bootstrap --verbose --no-use-binaries --platform iOS --cache-builds
1721

1822
script:
19-
- xcodebuild clean build -project readium-opds.xcodeproj -scheme readium-opds -destination "platform=iOS Simulator,name=iPhone 8,OS=11.3" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO -quiet
23+
- xcodebuild clean build -quiet
24+

opds/Cartfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "readium/r2-shared-swift" == 1.3.4
2-
github "edrlab/Fuzi" == 2.2.2
1+
github "readium/r2-shared-swift" == 1.4.2
2+
github "cezheng/Fuzi" == 3.1.1

opds/Cartfile.resolved

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "edrlab/Fuzi" "2.2.2"
2-
github "readium/r2-shared-swift" "1.3.4"
1+
github "cezheng/Fuzi" "3.1.1"
2+
github "readium/r2-shared-swift" "1.4.2"

opds/ReadiumOPDS.podspec

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

33
s.name = "ReadiumOPDS"
4-
s.version = "1.0.4"
5-
s.summary = "Readium OPDS"
6-
s.homepage = "http://readium.github.io"
7-
s.license = "BSD 3-Clause License"
8-
s.author = { "Aferdita Muriqi" => "aferdita.muriqi@gmail.com" }
9-
s.platform = :ios
10-
s.ios.deployment_target = "9.0"
11-
s.source = { :git => "https://github.com/readium/r2-opds-swift.git", :branch => "develop" }
4+
s.version = "1.2.2"
5+
s.license = "BSD 3-Clause License"
6+
s.summary = "Readium OPDS"
7+
s.homepage = "http://readium.github.io"
8+
s.author = { "Aferdita Muriqi" => "aferdita.muriqi@gmail.com" }
9+
s.source = { :git => "https://github.com/readium/r2-opds-swift.git", :tag => "1.2.2" }
10+
s.exclude_files = ["**/Info*.plist"]
11+
s.requires_arc = true
12+
s.resources = ['readium-opds/Resources/**']
1213
s.source_files = "readium-opds/**/*.{m,h,swift}"
13-
s.exclude_files = ["**/Info*.plist","**/Carthage/*"]
14-
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(PODS_ROOT)/ReadiumOPDS/**"' ,
15-
'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}
16-
s.swift_version = "4.2"
14+
s.platform = :ios
15+
s.ios.deployment_target = "10.0"
16+
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
1717

1818
s.dependency 'R2Shared'
1919
s.dependency 'Fuzi'

opds/readium-opds.xcodeproj/project.pbxproj

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261
SDKROOT = iphoneos;
262262
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
263263
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
264-
SWIFT_VERSION = 4.2;
264+
SWIFT_VERSION = 5.0;
265265
VERSIONING_SYSTEM = "apple-generic";
266266
VERSION_INFO_PREFIX = "";
267267
};
@@ -316,7 +316,7 @@
316316
MTL_ENABLE_DEBUG_INFO = NO;
317317
SDKROOT = iphoneos;
318318
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
319-
SWIFT_VERSION = 4.2;
319+
SWIFT_VERSION = 5.0;
320320
VALIDATE_PRODUCT = YES;
321321
VERSIONING_SYSTEM = "apple-generic";
322322
VERSION_INFO_PREFIX = "";
@@ -347,8 +347,9 @@
347347
PRODUCT_NAME = ReadiumOPDS;
348348
PROVISIONING_PROFILE_SPECIFIER = "";
349349
SKIP_INSTALL = YES;
350+
SUPPORTS_MACCATALYST = NO;
350351
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
351-
SWIFT_VERSION = 4.2;
352+
SWIFT_VERSION = 5.0;
352353
TARGETED_DEVICE_FAMILY = "1,2";
353354
};
354355
name = Debug;
@@ -377,7 +378,8 @@
377378
PRODUCT_NAME = ReadiumOPDS;
378379
PROVISIONING_PROFILE_SPECIFIER = "";
379380
SKIP_INSTALL = YES;
380-
SWIFT_VERSION = 4.2;
381+
SUPPORTS_MACCATALYST = NO;
382+
SWIFT_VERSION = 5.0;
381383
TARGETED_DEVICE_FAMILY = "1,2";
382384
};
383385
name = Release;

0 commit comments

Comments
 (0)