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

Commit

Permalink
Bump version to 2.0.0-alpha.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu committed Aug 11, 2020
1 parent f744e6c commit cbbedab
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS

This file was deleted.

4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

## [2.0.0-alpha.1]

### Added

* `ReadiumWebPubParser` to parse all Readium Web Publication profiles, including [Audiobooks](https://readium.org/webpub-manifest/extensions/audiobook.html) and [LCP for PDF](https://readium.org/lcp-specs/notes/lcp-for-pdf.html). It parses both manifests and packages.
Expand All @@ -16,4 +18,4 @@ All notable changes to this project will be documented in this file.
* [Prevent the embedded HTTP server from stopping when the device is locked](https://github.com/readium/r2-streamer-swift/pull/163), to allow background playback of audiobooks.

[unreleased]: https://github.com/readium/r2-streamer-swift/compare/master...HEAD
[x.x.x]: https://github.com/readium/r2-streamer-swift/compare/1.2.5...x.x.x
[2.0.0-alpha.1]: https://github.com/readium/r2-streamer-swift/compare/1.2.5...2.0.0-alpha.1
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#github "readium/r2-shared-swift" == 1.4.3
github "readium/r2-shared-swift" "2.0.0-alpha.1"
github "dexman/Minizip" == 1.4.0
github "cezheng/Fuzi" == 3.1.2
github "krzyzanowskim/CryptoSwift" == 1.3.1
Expand Down
1 change: 1 addition & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ github "cezheng/Fuzi" "3.1.2"
github "dexman/Minizip" "1.4.0"
github "edrlab/GCDWebServer" "3.6.2"
github "krzyzanowskim/CryptoSwift" "1.3.1"
github "readium/r2-shared-swift" "c77b663dfed7e8e0d9317c7c01daaccb878bf9fb"
8 changes: 4 additions & 4 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 = "1.2.5"
s.version = "2.0.0-alpha.1"
s.license = "BSD 3-Clause License"
s.summary = "R2 Streamer"
s.homepage = "http://readium.github.io"
s.author = { "Aferdita Muriqi" => "[email protected]" }
s.source = { :git => "https://github.com/readium/r2-streamer-swift.git", :tag => "1.2.5" }
s.source = { :git => "https://github.com/readium/r2-streamer-swift.git", :tag => "2.0.0-alpha.1" }
s.exclude_files = ["**/Info*.plist"]
s.requires_arc = true
s.resources = ['r2-streamer-swift/Resources/**']
s.source_files = "r2-streamer-swift/**/*.{m,h,swift}"
s.platform = :ios
s.ios.deployment_target = "10.0"

s.libraries = 'z'
s.libraries = 'z', 'xml2'
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2' }

s.dependency 'R2Shared'
s.dependency 'Fuzi'
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ install R2Streamer with Carthage:
2. Update your Cartfile to include the following:

```ruby
github "readium/r2-streamer-swift" ~> 1.0.7
github "readium/r2-streamer-swift" "develop"
```

3. Run `carthage update` and
Expand Down Expand Up @@ -57,7 +57,7 @@ R2Streamer with CocoaPods:
use_frameworks!
target 'YourAppTargetName' do
pod 'R2Streamer', :git => 'https://github.com/readium/r2-streamer-swift.git', '~> 1.0.7'
pod 'R2Streamer', :git => 'https://github.com/readium/r2-streamer-swift.git', :branch => 'develop'
end
```

Expand Down

0 comments on commit cbbedab

Please sign in to comment.