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 (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu committed Jul 29, 2021
1 parent e0519b9 commit 159fd27
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 21 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.

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

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

## [2.1.0]

### Added

Expand Down Expand Up @@ -85,3 +87,4 @@ All notable changes to this project will be documented in this file.
[2.0.0-beta.1]: https://github.com/readium/r2-streamer-swift/compare/2.0.0-alpha.2...2.0.0-beta.1
[2.0.0-beta.2]: https://github.com/readium/r2-streamer-swift/compare/2.0.0-beta.1...2.0.0-beta.2
[2.0.0]: https://github.com/readium/r2-streamer-swift/compare/2.0.0-beta.2...2.0.0
[2.1.0]: https://github.com/readium/r2-streamer-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
Expand Up @@ -2,4 +2,4 @@ github "cezheng/Fuzi" ~> 3.1.3
github "dexman/Minizip" ~> 1.4.0
github "krzyzanowskim/CryptoSwift" ~> 1.3.8
github "readium/GCDWebServer" ~> 3.6.3
github "readium/r2-shared-swift" "develop"
github "readium/r2-shared-swift" ~> 2.1.0
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ github "cezheng/Fuzi" "3.1.3"
github "dexman/Minizip" "1.4.0"
github "krzyzanowskim/CryptoSwift" "1.4.1"
github "readium/GCDWebServer" "3.7.0"
github "readium/r2-shared-swift" "7e99bfb4f9a2428857620a9c5a69575e4e839c83"
github "readium/r2-shared-swift" "2.1.0"
github "scinfu/SwiftSoup" "2.3.2"
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": "4e31051c63cc0ddf10a25cf5318856c510cf77f4",
"version": "1.4.0"
"revision": "8d4f6384e0a8cc41f2005247241dd553963a492a",
"version": "1.4.1"
}
},
{
Expand All @@ -32,9 +32,9 @@
"package": "r2-shared-swift",
"repositoryURL": "https://github.com/readium/r2-shared-swift.git",
"state": {
"branch": "develop",
"revision": "da74c212047c4616876b25a2993572dda888b949",
"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 @@ -19,7 +19,7 @@ let package = Package(
.package(url: "https://github.com/krzyzanowskim/CryptoSwift.git", from: "1.3.8"),
.package(url: "https://github.com/marmelroy/Zip.git", from: "2.1.1"),
.package(url: "https://github.com/readium/GCDWebServer.git", from: "3.7.0"),
.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"),
],
targets: [
.target(
Expand Down
24 changes: 12 additions & 12 deletions R2Streamer.podspec
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
Pod::Spec.new do |s|

s.name = "R2Streamer"
s.version = "2.0.0"
s.license = "BSD 3-Clause License"
s.summary = "R2 Streamer"
s.homepage = "http://readium.github.io"
s.author = { "Aferdita Muriqi" => "aferdita.muriqi@gmail.com" }
s.source = { :git => "https://github.com/readium/r2-streamer-swift.git", :branch => "develop" }
s.name = "R2Streamer"
s.version = "2.1.0"
s.license = "BSD 3-Clause License"
s.summary = "R2 Streamer"
s.homepage = "http://readium.github.io"
s.author = { "Readium" => "contact@readium.org" }
s.source = { :git => 'https://github.com/readium/r2-streamer-swift.git', :tag => '2.1.0' }
s.exclude_files = ["**/Info*.plist"]
s.requires_arc = true
s.resources = ['r2-streamer-swift/Resources/**', 'r2-streamer-swift/Assets']
s.requires_arc = true
s.resources = ['r2-streamer-swift/Resources/**', 'r2-streamer-swift/Assets']
s.source_files = "r2-streamer-swift/**/*.{m,h,swift}"
s.platform = :ios
s.platform = :ios
s.ios.deployment_target = "10.0"
s.libraries = 'z', 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }
s.libraries = 'z', 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

s.dependency 'R2Shared'
s.dependency 'CryptoSwift', '~> 1.3.8'
Expand Down

0 comments on commit 159fd27

Please sign in to comment.