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

Commit

Permalink
2.1.0 (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu committed Jul 29, 2021
1 parent 22abab9 commit d4b3c77
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
<!--## [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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -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+
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -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"
10 changes: 5 additions & 5 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
},
{
Expand All @@ -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"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
6 changes: 3 additions & 3 deletions ReadiumLCP.podspec
Original file line number Diff line number Diff line change
@@ -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/**']
Expand Down

0 comments on commit d4b3c77

Please sign in to comment.