Skip to content

Commit e1f2ab5

Browse files
committed
Preparation for 3.1 release.
1 parent c473096 commit e1f2ab5

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

OCMock.podspec

+2-2
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.2"
3+
s.version = "3.1"
44

55
s.summary = "Mock objects for Objective-C"
66
s.description = <<-DESC
@@ -16,7 +16,7 @@ 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.2" }
19+
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.1" }
2020
s.source_files = "Source/OCMock/*.{h,m}"
2121

2222
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|

Source/Changes.txt

+6
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ OCMock 3.1 (unreleased)
55

66
* Converting number types to make andReturn more intuitive (Carl Lindberg)
77
* Macros now silence warnings about unused return values (Gordon Fontenot)
8+
* Added isKindOfClass constraint (Ash Furrow)
9+
* Performance and stability improvements. As a result it is no longer possible
10+
use verify-after-running to verify certain methods:
11+
- All methods implemented by NSObject and categories on it
12+
- Private methods in core Apple classes, ie. the class name has an NS or UI
13+
prefix and the method has an underscore prefix and/or suffix.
814

915

1016
OCMock 3.0.2 (2014-07-07)

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.2.dmg", "OCMock 3.0.2"
15+
createPackage "ocmock-3.1.dmg", "OCMock 3.1"
1616
openPackageDir
1717
end
1818

0 commit comments

Comments
 (0)