diff --git a/DSSparseArray.podspec b/DSSparseArray.podspec index 6746ee4..8ae64fc 100644 --- a/DSSparseArray.podspec +++ b/DSSparseArray.podspec @@ -1,9 +1,9 @@ Pod::Spec.new do |s| s.name = "DSSparseArray" - s.version = "1.2.1" + s.version = "1.5.1" s.author = { "David W. Stockton" => "stockton@syntonicity.net" } s.license = 'MIT' - s.source = { :git => "https://github.com/LavaSlider/DSSparseArray.git", :tag => "1.0.0" } + s.source = { :git => "https://github.com/LavaSlider/DSSparseArray.git", :tag => "v1.5.1" } s.summary = "Objective C Sparse Array Implementation" s.homepage = "https://github.com/LavaSlider/DSSparseArray" s.source_files = 'DSSparseArray/DS*SparseArray*.{h,m}' diff --git a/DSSparseArray.xcodeproj/project.pbxproj b/DSSparseArray.xcodeproj/project.pbxproj index a2664a4..56e3651 100755 --- a/DSSparseArray.xcodeproj/project.pbxproj +++ b/DSSparseArray.xcodeproj/project.pbxproj @@ -34,8 +34,8 @@ /* Begin PBXFileReference section */ 24191A7D1931134400F389CB /* README.md */ = {isa = PBXFileReference; lastKnownFileType = text; path = README.md; sourceTree = ""; }; - 2453F55D192867DD009AA13F /* DSSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = DSSparseArray.md; sourceTree = ""; }; - 2453F55F1929ADFB009AA13F /* DSMutableSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; path = DSMutableSparseArray.md; sourceTree = ""; }; + 2453F55D192867DD009AA13F /* DSSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = DSSparseArray.md; path = DSSparseArray/DSSparseArray.md; sourceTree = ""; }; + 2453F55F1929ADFB009AA13F /* DSMutableSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; name = DSMutableSparseArray.md; path = DSSparseArray/DSMutableSparseArray.md; sourceTree = ""; }; 2480FA72191EC961002158C9 /* DSSparseArray.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSSparseArray.app; sourceTree = BUILT_PRODUCTS_DIR; }; 2480FA75191EC961002158C9 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; 2480FA78191EC961002158C9 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; @@ -54,10 +54,10 @@ 2480FA9B191EC961002158C9 /* DSSparseArrayTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSSparseArrayTests-Info.plist"; sourceTree = ""; }; 2480FA9D191EC961002158C9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; 2480FA9F191EC961002158C9 /* DSSparseArrayTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSSparseArrayTests.m; sourceTree = ""; }; - 2480FAA9191EC9CB002158C9 /* DSSparseArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSSparseArray.h; sourceTree = ""; }; - 2480FAAA191EC9CB002158C9 /* DSSparseArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSSparseArray.m; sourceTree = ""; }; - 24B2218C192B66F800AC6826 /* DSSparseArrayEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSSparseArrayEnumerator.h; sourceTree = ""; }; - 24B2218D192B66F800AC6826 /* DSSparseArrayEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSSparseArrayEnumerator.m; sourceTree = ""; }; + 2480FAA9191EC9CB002158C9 /* DSSparseArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DSSparseArray.h; path = DSSparseArray/DSSparseArray.h; sourceTree = ""; }; + 2480FAAA191EC9CB002158C9 /* DSSparseArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DSSparseArray.m; path = DSSparseArray/DSSparseArray.m; sourceTree = ""; }; + 24B2218C192B66F800AC6826 /* DSSparseArrayEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DSSparseArrayEnumerator.h; path = DSSparseArray/DSSparseArrayEnumerator.h; sourceTree = ""; }; + 24B2218D192B66F800AC6826 /* DSSparseArrayEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DSSparseArrayEnumerator.m; path = DSSparseArray/DSSparseArrayEnumerator.m; sourceTree = ""; }; 24F50F2C19AF755C00795A67 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = ""; }; /* End PBXFileReference section */ diff --git a/DSSparseArray/DSSparseArray-Info.plist b/DSSparseArray/DSSparseArray-Info.plist index 4b2217e..47cbad8 100755 --- a/DSSparseArray/DSSparseArray-Info.plist +++ b/DSSparseArray/DSSparseArray-Info.plist @@ -21,7 +21,7 @@ CFBundleSignature ???? CFBundleVersion - 94 + 96 LSMinimumSystemVersion ${MACOSX_DEPLOYMENT_TARGET} NSHumanReadableCopyright