Skip to content
This repository was archived by the owner on Aug 12, 2022. It is now read-only.

Commit

Permalink
2.0.0-beta.2 (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Apr 14, 2021

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 6fe5e89 commit 6e767a2
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.

**Warning:** Features marked as *experimental* may change or be removed in a future release without notice. Use with caution.

## [Unreleased]
<!--## [Unreleased]-->

## [2.0.0-beta.2]

### Changed

@@ -15,7 +17,6 @@ All notable changes to this project will be documented in this file.
* The Renew Loan API got revamped to better support renewal through a web page.
* You will need to implement `LCPRenewDelegate` to coordinate the UX interaction.
* Readium ships with a default implementation `LCPDefaultRenewDelegate` to handle web page renewal with `SFSafariViewController`.
* CocoaPods is not supported anymore.

### Fixed

@@ -68,3 +69,4 @@ All notable changes to this project will be documented in this file.
[2.0.0-alpha.1]: https://github.com/readium/r2-lcp-swift/compare/1.2.3...2.0.0-alpha.1
[2.0.0-alpha.2]: https://github.com/readium/r2-lcp-swift/compare/2.0.0-alpha.1...2.0.0-alpha.2
[2.0.0-beta.1]: https://github.com/readium/r2-lcp-swift/compare/2.0.0-alpha.2...2.0.0-beta.1
[2.0.0-beta.2]: https://github.com/readium/r2-lcp-swift/compare/2.0.0-beta.1...2.0.0-beta.2
4 changes: 2 additions & 2 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github "readium/r2-shared-swift" "develop"
github "readium/r2-shared-swift" == 2.0.0-beta.2
github "stephencelis/SQLite.swift" == 0.12.2
github "krzyzanowskim/CryptoSwift" == 1.3.8
github "weichsel/ZIPFoundation" == 0.9.11
github "weichsel/ZIPFoundation" == 0.9.11 # 0.9.12 requires iOS 12+
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "cezheng/Fuzi" "3.1.3"
github "dexman/Minizip" "1.4.0"
github "krzyzanowskim/CryptoSwift" "1.3.8"
github "readium/r2-shared-swift" "8065a61e72b46214a71f7128c8ce1594fc30c85d"
github "readium/r2-shared-swift" "2.0.0-beta.2"
github "stephencelis/SQLite.swift" "0.12.2"
github "weichsel/ZIPFoundation" "0.9.11"
2 changes: 1 addition & 1 deletion ReadiumLCP.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "ReadiumLCP"
s.version = "2.0.0-beta.1"
s.version = "2.0.0-beta.2"
s.license = "BSD 3-Clause License"
s.summary = "Readium LCP"
s.homepage = "http://readium.github.io"
2 changes: 1 addition & 1 deletion r2-lcp-swift.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
@@ -456,7 +456,7 @@
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 1200;
LastUpgradeCheck = 1230;
LastUpgradeCheck = 1240;
ORGANIZATIONNAME = Readium;
TargetAttributes = {
CA5A5E0425208F1B00CF1CCE = {
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1230"
LastUpgradeVersion = "1240"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
2 changes: 0 additions & 2 deletions readium-lcp-swift/LCPError.swift
Original file line number Diff line number Diff line change
@@ -63,8 +63,6 @@ public enum LCPError: LocalizedError {
return R2LCPLocalizedString("LCPClientError.contentDecryptError")
case .unknown:
return R2LCPLocalizedString("LCPClientError.unknown")
@unknown default:
return R2LCPLocalizedString("LCPClientError.unknown")
}
}()
return R2LCPLocalizedString("LCPError.licenseIntegrity", description)

0 comments on commit 6e767a2

Please sign in to comment.