Skip to content

Commit 6ba50b6

Browse files
authored
3.0.0 (#535)
1 parent 2dc5805 commit 6ba50b6

12 files changed

+95
-101
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ If you're stuck, find more information at [developer.apple.com](https://develope
4545
Add the following to your `Cartfile`:
4646

4747
```
48-
github "readium/swift-toolkit" ~> 3.0.0-beta.2
48+
github "readium/swift-toolkit" ~> 3.0.0
4949
```
5050

5151
Then, [follow the usual Carthage steps](https://github.com/Carthage/Carthage#adding-frameworks-to-an-application) to add the Readium libraries to your project.
@@ -74,11 +74,11 @@ Add the following `pod` statements to your `Podfile` for the Readium libraries y
7474
source 'https://github.com/readium/podspecs'
7575
source 'https://cdn.cocoapods.org/'
7676
77-
pod 'ReadiumShared', '~> 3.0.0-beta.2'
78-
pod 'ReadiumStreamer', '~> 3.0.0-beta.2'
79-
pod 'ReadiumNavigator', '~> 3.0.0-beta.2'
80-
pod 'ReadiumOPDS', '~> 3.0.0-beta.2'
81-
pod 'ReadiumLCP', '~> 3.0.0-beta.2'
77+
pod 'ReadiumShared', '~> 3.0.0'
78+
pod 'ReadiumStreamer', '~> 3.0.0'
79+
pod 'ReadiumNavigator', '~> 3.0.0'
80+
pod 'ReadiumOPDS', '~> 3.0.0'
81+
pod 'ReadiumLCP', '~> 3.0.0'
8282
```
8383

8484
Take a look at [CocoaPods's documentation](https://guides.cocoapods.org/using/using-cocoapods.html) for more information.

Support/CocoaPods/ReadiumAdapterGCDWebServer.podspec

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

33
s.name = "ReadiumAdapterGCDWebServer"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Adapter to use GCDWebServer as an HTTP server in Readium"
77
s.homepage = "http://readium.github.io"
@@ -14,8 +14,8 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = "13.4"
1515
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
1616

17-
s.dependency 'ReadiumShared', '~> 3.0.0-beta.2'
18-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
17+
s.dependency 'ReadiumShared', '~> 3.0.0'
18+
s.dependency 'ReadiumInternal', '~> 3.0.0'
1919
s.dependency 'ReadiumGCDWebServer', '~> 4.0.0'
2020

2121
end

Support/CocoaPods/ReadiumAdapterLCPSQLite.podspec

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

33
s.name = "ReadiumAdapterLCPSQLite"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Adapter to use SQLite.swift for the Readium LCP repositories"
77
s.homepage = "http://readium.github.io"
@@ -14,8 +14,8 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = "13.4"
1515
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
1616

17-
s.dependency 'ReadiumLCP', '~> 3.0.0-beta.2'
18-
s.dependency 'ReadiumShared', '~> 3.0.0-beta.2'
17+
s.dependency 'ReadiumLCP', '~> 3.0.0'
18+
s.dependency 'ReadiumShared', '~> 3.0.0'
1919
s.dependency 'SQLite.swift', '~> 0.15.0'
2020

2121
end

Support/CocoaPods/ReadiumInternal.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |s|
22

33
s.name = "ReadiumInternal"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Private utilities used by the Readium modules"
77
s.homepage = "http://readium.github.io"

Support/CocoaPods/ReadiumLCP.podspec

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

33
s.name = "ReadiumLCP"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium LCP"
77
s.homepage = "http://readium.github.io"
@@ -20,8 +20,8 @@ Pod::Spec.new do |s|
2020
s.ios.deployment_target = "13.4"
2121
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2'}
2222

23-
s.dependency 'ReadiumShared' , '~> 3.0.0-beta.2'
24-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
23+
s.dependency 'ReadiumShared' , '~> 3.0.0'
24+
s.dependency 'ReadiumInternal', '~> 3.0.0'
2525
s.dependency 'ReadiumZIPFoundation', '~> 1.0.0'
2626
s.dependency 'CryptoSwift', '~> 1.8.0'
2727
end

Support/CocoaPods/ReadiumNavigator.podspec

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

33
s.name = "ReadiumNavigator"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium Navigator"
77
s.homepage = "http://readium.github.io"
@@ -19,8 +19,8 @@ Pod::Spec.new do |s|
1919
s.platform = :ios
2020
s.ios.deployment_target = "13.4"
2121

22-
s.dependency 'ReadiumShared', '~> 3.0.0-beta.2'
23-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
22+
s.dependency 'ReadiumShared', '~> 3.0.0'
23+
s.dependency 'ReadiumInternal', '~> 3.0.0'
2424
s.dependency 'DifferenceKit', '~> 1.0'
2525
s.dependency 'SwiftSoup', '~> 2.7.0'
2626

Support/CocoaPods/ReadiumOPDS.podspec

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

33
s.name = "ReadiumOPDS"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium OPDS"
77
s.homepage = "http://readium.github.io"
@@ -14,8 +14,8 @@ Pod::Spec.new do |s|
1414
s.ios.deployment_target = "13.4"
1515
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
1616

17-
s.dependency 'ReadiumShared', '~> 3.0.0-beta.2'
18-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
17+
s.dependency 'ReadiumShared', '~> 3.0.0'
18+
s.dependency 'ReadiumInternal', '~> 3.0.0'
1919
s.dependency 'ReadiumFuzi', '~> 4.0.0'
2020

2121
end

Support/CocoaPods/ReadiumShared.podspec

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

33
s.name = "ReadiumShared"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium Shared"
77
s.homepage = "http://readium.github.io"
@@ -19,6 +19,6 @@ Pod::Spec.new do |s|
1919
s.dependency 'SwiftSoup', '~> 2.7.0'
2020
s.dependency 'ReadiumFuzi', '~> 4.0.0'
2121
s.dependency 'ReadiumZIPFoundation', '~> 1.0.0'
22-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
22+
s.dependency 'ReadiumInternal', '~> 3.0.0'
2323

2424
end

Support/CocoaPods/ReadiumStreamer.podspec

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

33
s.name = "ReadiumStreamer"
4-
s.version = "3.0.0-beta.2"
4+
s.version = "3.0.0"
55
s.license = "BSD 3-Clause License"
66
s.summary = "Readium Streamer"
77
s.homepage = "http://readium.github.io"
@@ -22,8 +22,8 @@ Pod::Spec.new do |s|
2222
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
2323

2424
s.dependency 'ReadiumFuzi', '~> 4.0.0'
25-
s.dependency 'ReadiumShared', '~> 3.0.0-beta.2'
26-
s.dependency 'ReadiumInternal', '~> 3.0.0-beta.2'
25+
s.dependency 'ReadiumShared', '~> 3.0.0'
26+
s.dependency 'ReadiumInternal', '~> 3.0.0'
2727
s.dependency 'CryptoSwift', '~> 1.8.0'
2828

2929
end

TestApp/Integrations/Carthage/project+lcp.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ targets:
2828
- framework: Carthage/Build/R2LCPClient.xcframework
2929
- framework: Carthage/Build/ReadiumAdapterGCDWebServer.xcframework
3030
- framework: Carthage/Build/ReadiumAdapterLCPSQLite.xcframework
31+
- framework: Carthage/Build/ReadiumFuzi.xcframework
3132
- framework: Carthage/Build/ReadiumGCDWebServer.xcframework
3233
- framework: Carthage/Build/ReadiumInternal.xcframework
3334
- framework: Carthage/Build/ReadiumLCP.xcframework

0 commit comments

Comments
 (0)