Skip to content

Commit

Permalink
Preparation for 3.1 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Aug 22, 2014
1 parent c473096 commit e1f2ab5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions OCMock.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "OCMock"
s.version = "3.0.2"
s.version = "3.1"

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

s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.2" }
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.1" }
s.source_files = "Source/OCMock/*.{h,m}"

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|
Expand Down
6 changes: 6 additions & 0 deletions Source/Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ OCMock 3.1 (unreleased)

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


OCMock 3.0.2 (2014-07-07)
Expand Down
2 changes: 1 addition & 1 deletion Tools/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def makeRelease
downloadSource
copySource
buildModules
createPackage "ocmock-3.0.2.dmg", "OCMock 3.0.2"
createPackage "ocmock-3.1.dmg", "OCMock 3.1"
openPackageDir
end

Expand Down

0 comments on commit e1f2ab5

Please sign in to comment.