diff --git a/CHANGELOG.md b/CHANGELOG.md index cb2cd96..d16912d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ Changelog ========== + +### 2.1.2 + +- Use DispatchGroup for download + ### 2.1.1 - Hide close button when push the controller diff --git a/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj b/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj index 9bca7fb..d6925a9 100644 --- a/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj +++ b/Exemple/OpenSourceControllerDemo.xcodeproj/project.pbxproj @@ -19,6 +19,7 @@ 76EAA8911E93F67B009A41DA /* Array+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EAA8901E93F67B009A41DA /* Array+Extensions.swift */; }; 76EAA8941E93F681009A41DA /* OpenSourceController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EAA8921E93F681009A41DA /* OpenSourceController.swift */; }; 76EAA8951E93F681009A41DA /* OpenSourceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76EAA8931E93F681009A41DA /* OpenSourceViewController.swift */; }; + C33E4D96204442AC00142EE6 /* CHANGELOG.md in Resources */ = {isa = PBXBuildFile; fileRef = C33E4D95204442AC00142EE6 /* CHANGELOG.md */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -36,6 +37,7 @@ 76EAA8901E93F67B009A41DA /* Array+Extensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = "Array+Extensions.swift"; path = "../../Sources/Extensions/Array+Extensions.swift"; sourceTree = ""; }; 76EAA8921E93F681009A41DA /* OpenSourceController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = OpenSourceController.swift; path = ../../Sources/Controller/OpenSourceController.swift; sourceTree = ""; }; 76EAA8931E93F681009A41DA /* OpenSourceViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = OpenSourceViewController.swift; path = ../../Sources/Controller/OpenSourceViewController.swift; sourceTree = ""; }; + C33E4D95204442AC00142EE6 /* CHANGELOG.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; name = CHANGELOG.md; path = ../CHANGELOG.md; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -52,6 +54,7 @@ 76EAA8581E93F2CC009A41DA = { isa = PBXGroup; children = ( + C33E4D95204442AC00142EE6 /* CHANGELOG.md */, 76EAA8631E93F2CC009A41DA /* OpenSourceControllerDemo */, 76EAA8621E93F2CC009A41DA /* Products */, ); @@ -157,6 +160,7 @@ 76EAA86F1E93F2CC009A41DA /* LaunchScreen.storyboard in Resources */, 76EAA86C1E93F2CC009A41DA /* Assets.xcassets in Resources */, 76EAA86A1E93F2CC009A41DA /* Main.storyboard in Resources */, + C33E4D96204442AC00142EE6 /* CHANGELOG.md in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/florian.gabach.xcuserdatad/UserInterfaceState.xcuserstate b/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/florian.gabach.xcuserdatad/UserInterfaceState.xcuserstate index 23986b3..7bbb331 100644 Binary files a/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/florian.gabach.xcuserdatad/UserInterfaceState.xcuserstate and b/Exemple/OpenSourceControllerDemo.xcodeproj/project.xcworkspace/xcuserdata/florian.gabach.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/OpenSourceController.podspec b/OpenSourceController.podspec index 23bc2c3..6df9548 100644 --- a/OpenSourceController.podspec +++ b/OpenSourceController.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'OpenSourceController' -s.version = '2.1.1' +s.version = '2.1.2' s.summary = 'Display all the librarys licence used in your application. Enjoy !' s.description = 'Display a screen with all licence used in your apply can be painful to maintain. OpenSourceController was built to respond to this problem. OpenSourceController is a simple parser to display the licences which are used in your application.' s.homepage = 'https://github.com/floriangbh/OpenSourceController'