diff --git a/CHANGELOG.md b/CHANGELOG.md index c4133b3..87046c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,15 @@ 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] + + +## [2.1.0] ### Added * Support for Swift Package Manager (contributed by [@stevenzeck](https://github.com/readium/r2-lcp-swift/pull/121)). + ## [2.0.0] ### Deprecated @@ -82,3 +85,4 @@ All notable changes to this project will be documented in this file. [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 [2.0.0]: https://github.com/readium/r2-lcp-swift/compare/2.0.0-beta.2...2.0.0 +[2.1.0]: https://github.com/readium/r2-lcp-swift/compare/2.0.0...2.1.0 diff --git a/Cartfile b/Cartfile index c6d2e69..05a1afe 100644 --- a/Cartfile +++ b/Cartfile @@ -1,4 +1,4 @@ github "krzyzanowskim/CryptoSwift" ~> 1.3.8 -github "readium/r2-shared-swift" "develop" +github "readium/r2-shared-swift" ~> 2.1.0 github "stephencelis/SQLite.swift" ~> 0.12.2 github "weichsel/ZIPFoundation" == 0.9.11 # 0.9.12 requires iOS 12+ diff --git a/Cartfile.resolved b/Cartfile.resolved index c9e81b9..c3ca3e3 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,7 +1,7 @@ github "cezheng/Fuzi" "3.1.3" github "dexman/Minizip" "1.4.0" github "krzyzanowskim/CryptoSwift" "1.4.1" -github "readium/r2-shared-swift" "7e99bfb4f9a2428857620a9c5a69575e4e839c83" +github "readium/r2-shared-swift" "2.1.0" github "scinfu/SwiftSoup" "2.3.2" github "stephencelis/SQLite.swift" "0.12.2" github "weichsel/ZIPFoundation" "0.9.11" diff --git a/Package.resolved b/Package.resolved index c56bf1d..7664cf7 100644 --- a/Package.resolved +++ b/Package.resolved @@ -6,8 +6,8 @@ "repositoryURL": "https://github.com/krzyzanowskim/CryptoSwift.git", "state": { "branch": null, - "revision": "5669f222e46c8134fb1f399c745fa6882b43532e", - "version": "1.3.8" + "revision": "8d4f6384e0a8cc41f2005247241dd553963a492a", + "version": "1.4.1" } }, { @@ -23,9 +23,9 @@ "package": "r2-shared-swift", "repositoryURL": "https://github.com/readium/r2-shared-swift.git", "state": { - "branch": "develop", - "revision": "2b2d0d936f776801161e256ec807ddbc66b5bf4d", - "version": null + "branch": null, + "revision": "f631efdb51ad6cb55fb173b4e80bbb1d1215fa76", + "version": "2.1.0" } }, { diff --git a/Package.swift b/Package.swift index 7b5a795..959f086 100644 --- a/Package.swift +++ b/Package.swift @@ -18,7 +18,7 @@ let package = Package( ], dependencies: [ .package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.3.8"), - .package(url: "https://github.com/readium/r2-shared-swift.git", .branch("develop")), + .package(url: "https://github.com/readium/r2-shared-swift.git", from: "2.1.0"), .package(url: "https://github.com/stephencelis/SQLite.swift.git", from: "0.12.2"), // 0.9.12 requires iOS 12+ .package(url: "https://github.com/weichsel/ZIPFoundation.git", "0.9.0"..<"0.9.12"), diff --git a/ReadiumLCP.podspec b/ReadiumLCP.podspec index 4fefdfe..cf192b7 100644 --- a/ReadiumLCP.podspec +++ b/ReadiumLCP.podspec @@ -1,12 +1,12 @@ Pod::Spec.new do |s| s.name = "ReadiumLCP" - s.version = "2.0.0" + s.version = "2.1.0" s.license = "BSD 3-Clause License" s.summary = "Readium LCP" s.homepage = "http://readium.github.io" - s.author = { "Aferdita Muriqi" => "aferdita.muriqi@gmail.com" } - s.source = { :git => "https://github.com/readium/r2-lcp-swift.git", :branch => "develop" } + s.author = { "Readium" => "contact@readium.org" } + s.source = { :git => 'https://github.com/readium/r2-lcp-swift.git', :tag => '2.1.0' } s.exclude_files = ["**/Info*.plist"] s.requires_arc = true s.resources = ['readium-lcp-swift/Resources/**']