From 8d89c8044f2b47c00608d2de8c2785d329c90a2b Mon Sep 17 00:00:00 2001 From: Asif Bilal Date: Mon, 20 Jun 2016 14:18:00 +0500 Subject: [PATCH] Updated Podspec version 0.1.3 --- SimplePhotoPicker.podspec | 2 +- SimplePhotoPicker.xcodeproj/project.pbxproj | 7 ++++--- SimplePhotoPicker/{ => Core}/PhotoPicker.swift | 0 3 files changed, 5 insertions(+), 4 deletions(-) rename SimplePhotoPicker/{ => Core}/PhotoPicker.swift (100%) diff --git a/SimplePhotoPicker.podspec b/SimplePhotoPicker.podspec index 4de4e7d..351487c 100644 --- a/SimplePhotoPicker.podspec +++ b/SimplePhotoPicker.podspec @@ -2,7 +2,7 @@ Pod::Spec.new do |s| # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― # s.name = 'SimplePhotoPicker' - s.version = '0.1.2' + s.version = '0.1.3' s.summary = 'This is the simple photo picker which uses default iPhone SDK with UIImagePickerController.' s.description = <<-DESC SimplePhotoPicker is a control that optionally takes inputs of Source Type & allow Editing. On the basis of these inputs, this control displays the action sheet if needed and displays the iOS default image editor if selected. It has simple block based implementation. No need to implement delegate methods. diff --git a/SimplePhotoPicker.xcodeproj/project.pbxproj b/SimplePhotoPicker.xcodeproj/project.pbxproj index 6b7c983..80a1198 100644 --- a/SimplePhotoPicker.xcodeproj/project.pbxproj +++ b/SimplePhotoPicker.xcodeproj/project.pbxproj @@ -56,7 +56,7 @@ 2986B7C31D01E8C4002CDC3D /* SimplePhotoPicker */ = { isa = PBXGroup; children = ( - 2986B7D81D01E8DD002CDC3D /* PhotoPicker */, + 299FA4BF1D17EBF60029831D /* Core */, 2986B7C41D01E8C4002CDC3D /* AppDelegate.swift */, 2986B7C61D01E8C4002CDC3D /* ViewController.swift */, 2986B7C81D01E8C4002CDC3D /* Main.storyboard */, @@ -67,12 +67,12 @@ path = SimplePhotoPicker; sourceTree = ""; }; - 2986B7D81D01E8DD002CDC3D /* PhotoPicker */ = { + 299FA4BF1D17EBF60029831D /* Core */ = { isa = PBXGroup; children = ( 2986B7D61D01E8D6002CDC3D /* PhotoPicker.swift */, ); - name = PhotoPicker; + path = Core; sourceTree = ""; }; /* End PBXGroup section */ @@ -298,6 +298,7 @@ 2986B7D51D01E8C4002CDC3D /* Release */, ); defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; diff --git a/SimplePhotoPicker/PhotoPicker.swift b/SimplePhotoPicker/Core/PhotoPicker.swift similarity index 100% rename from SimplePhotoPicker/PhotoPicker.swift rename to SimplePhotoPicker/Core/PhotoPicker.swift