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

Commit

Permalink
Fix CocoaPods integration of the authentication dialog (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu authored Oct 8, 2021
1 parent d4b3c77 commit 8362029
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: ReadiumLCP

on:
push:
branches: [ develop ]
branches: [ develop, master ]
pull_request:
branches: [ develop ]
branches: [ develop, master ]

jobs:
build:
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.

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

## [2.1.1]

### Fixed

* Fix crash using the default `LCPDialogViewController` with CocoaPods.


## [2.1.0]

### Added
Expand Down Expand Up @@ -86,3 +93,4 @@ All notable changes to this project will be documented in this file.
[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.1.1]: https://github.com/readium/r2-lcp-swift/compare/2.1.0...2.1.1
9 changes: 6 additions & 3 deletions ReadiumLCP.podspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,18 @@
Pod::Spec.new do |s|

s.name = "ReadiumLCP"
s.version = "2.1.0"
s.version = "2.1.1"
s.license = "BSD 3-Clause License"
s.summary = "Readium LCP"
s.homepage = "http://readium.github.io"
s.author = { "Readium" => "contact@readium.org" }
s.source = { :git => 'https://github.com/readium/r2-lcp-swift.git', :tag => '2.1.0' }
s.source = { :git => 'https://github.com/readium/r2-lcp-swift.git', :tag => '2.1.1' }
s.exclude_files = ["**/Info*.plist"]
s.requires_arc = true
s.resources = ['readium-lcp-swift/Resources/**']
s.resources = [
'readium-lcp-swift/Resources/**',
'readium-lcp-swift/**/*.xib'
]
s.source_files = "readium-lcp-swift/**/*.{m,h,swift}"
s.platform = :ios
s.ios.deployment_target = "10.0"
Expand Down

0 comments on commit 8362029

Please sign in to comment.