diff --git a/OCMock.podspec b/OCMock.podspec index 3fc30e81..c9830bd4 100644 --- a/OCMock.podspec +++ b/OCMock.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OCMock" - s.version = "3.1" + s.version = "3.1.1" s.summary = "Mock objects for Objective-C" s.description = <<-DESC @@ -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.1" } + s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.1.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| diff --git a/Source/Changes.txt b/Source/Changes.txt index 36c73e61..f13f9659 100644 --- a/Source/Changes.txt +++ b/Source/Changes.txt @@ -1,6 +1,12 @@ Listing of notable changes by release. More detail is usually found in the Git commit messages and/or the pull requests. +OCMock 3.1.1 (2014-08-23) + +* Fixed a recently introduced bug that resulted in class arguments and return + values not to be considered objects (Patrick Hartling, Max Shcheglov) + + OCMock 3.1 (2014-08-22) * Converting number types to make andReturn more intuitive (Carl Lindberg) diff --git a/Tools/build.rb b/Tools/build.rb index 2fb6bf18..581ecf02 100755 --- a/Tools/build.rb +++ b/Tools/build.rb @@ -12,7 +12,7 @@ def makeRelease downloadSource copySource buildModules - createPackage "ocmock-3.1.dmg", "OCMock 3.1" + createPackage "ocmock-3.1.1.dmg", "OCMock 3.1.1" openPackageDir end