Skip to content

Commit cc6278b

Browse files
committed
Tweaks project file and podspec for uniformity.
Moving of some files dropped them out of the Xcode project breaking it for testing. Also the version number had gotten out of sync.
1 parent 98776c2 commit cc6278b

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

DSSparseArray.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Pod::Spec.new do |s|
22
s.name = "DSSparseArray"
3-
s.version = "1.2.1"
3+
s.version = "1.5.1"
44
s.author = { "David W. Stockton" => "stockton@syntonicity.net" }
55
s.license = 'MIT'
6-
s.source = { :git => "https://github.com/LavaSlider/DSSparseArray.git", :tag => "1.0.0" }
6+
s.source = { :git => "https://github.com/LavaSlider/DSSparseArray.git", :tag => "v1.5.1" }
77
s.summary = "Objective C Sparse Array Implementation"
88
s.homepage = "https://github.com/LavaSlider/DSSparseArray"
99
s.source_files = 'DSSparseArray/DS*SparseArray*.{h,m}'

DSSparseArray.xcodeproj/project.pbxproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434

3535
/* Begin PBXFileReference section */
3636
24191A7D1931134400F389CB /* README.md */ = {isa = PBXFileReference; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
37-
2453F55D192867DD009AA13F /* DSSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; path = DSSparseArray.md; sourceTree = "<group>"; };
38-
2453F55F1929ADFB009AA13F /* DSMutableSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; path = DSMutableSparseArray.md; sourceTree = "<group>"; };
37+
2453F55D192867DD009AA13F /* DSSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; fileEncoding = 4; name = DSSparseArray.md; path = DSSparseArray/DSSparseArray.md; sourceTree = "<group>"; };
38+
2453F55F1929ADFB009AA13F /* DSMutableSparseArray.md */ = {isa = PBXFileReference; explicitFileType = text; name = DSMutableSparseArray.md; path = DSSparseArray/DSMutableSparseArray.md; sourceTree = "<group>"; };
3939
2480FA72191EC961002158C9 /* DSSparseArray.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DSSparseArray.app; sourceTree = BUILT_PRODUCTS_DIR; };
4040
2480FA75191EC961002158C9 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
4141
2480FA78191EC961002158C9 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
@@ -54,10 +54,10 @@
5454
2480FA9B191EC961002158C9 /* DSSparseArrayTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "DSSparseArrayTests-Info.plist"; sourceTree = "<group>"; };
5555
2480FA9D191EC961002158C9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
5656
2480FA9F191EC961002158C9 /* DSSparseArrayTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSSparseArrayTests.m; sourceTree = "<group>"; };
57-
2480FAA9191EC9CB002158C9 /* DSSparseArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSSparseArray.h; sourceTree = "<group>"; };
58-
2480FAAA191EC9CB002158C9 /* DSSparseArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSSparseArray.m; sourceTree = "<group>"; };
59-
24B2218C192B66F800AC6826 /* DSSparseArrayEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSSparseArrayEnumerator.h; sourceTree = "<group>"; };
60-
24B2218D192B66F800AC6826 /* DSSparseArrayEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSSparseArrayEnumerator.m; sourceTree = "<group>"; };
57+
2480FAA9191EC9CB002158C9 /* DSSparseArray.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DSSparseArray.h; path = DSSparseArray/DSSparseArray.h; sourceTree = "<group>"; };
58+
2480FAAA191EC9CB002158C9 /* DSSparseArray.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DSSparseArray.m; path = DSSparseArray/DSSparseArray.m; sourceTree = "<group>"; };
59+
24B2218C192B66F800AC6826 /* DSSparseArrayEnumerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = DSSparseArrayEnumerator.h; path = DSSparseArray/DSSparseArrayEnumerator.h; sourceTree = "<group>"; };
60+
24B2218D192B66F800AC6826 /* DSSparseArrayEnumerator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = DSSparseArrayEnumerator.m; path = DSSparseArray/DSSparseArrayEnumerator.m; sourceTree = "<group>"; };
6161
24F50F2C19AF755C00795A67 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
6262
/* End PBXFileReference section */
6363

DSSparseArray/DSSparseArray-Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>94</string>
24+
<string>96</string>
2525
<key>LSMinimumSystemVersion</key>
2626
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
2727
<key>NSHumanReadableCopyright</key>

0 commit comments

Comments
 (0)