Skip to content

Commit b7c3309

Browse files
committed
Fix for issue #110.
1 parent 51ce477 commit b7c3309

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

OCMock.podspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OCMock"
3-
s.version = "3.0.1"
3+
s.version = "3.0.2"
44

55
s.summary = "Mock objects for Objective-C"
66
s.description = <<-DESC
@@ -16,10 +16,10 @@ Pod::Spec.new do |s|
1616
s.author = { "Erik Doernenburg" => "erik@doernenburg.com" }
1717
s.social_media_url = "http://twitter.com/erikdoe"
1818

19-
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.1" }
19+
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.2" }
2020
s.source_files = "Source/OCMock/*.{h,m}"
2121

22-
s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMockRecorder.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "NSNotificationCenter+OCMAdditions.h"].map { |file|
22+
s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h", "OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h"].map { |file|
2323
"Source/OCMock/" + file
2424
}
2525

Source/Changes.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Listing of notable changes by release. More detail is usually found in the Git
22
commit messages and/or the pull requests.
33

4+
OCMock 3.0.2 (2014-07-07)
5+
6+
* Fixed podspec
7+
8+
49
OCMock 3.0.1 (2014-07-06)
510

611
* Fixed bug that prevented stubs from returning nil

Tools/build.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def makeRelease
1212
downloadSource
1313
copySource
1414
buildModules
15-
createPackage "ocmock-3.0.1.dmg", "OCMock 3.0.1"
15+
createPackage "ocmock-3.0.2.dmg", "OCMock 3.0.2"
1616
openPackageDir
1717
end
1818

0 commit comments

Comments
 (0)