Skip to content

Commit

Permalink
Preparation for 3.2 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Oct 3, 2015
1 parent 5dde9e9 commit 9ba612d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
12 changes: 7 additions & 5 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.1.5"
s.version = "3.2"

s.summary = "Mock objects for Objective-C"
s.description = <<-DESC
Expand All @@ -17,15 +17,17 @@ Pod::Spec.new do |s|
s.author = { "Erik Doernenburg" => "[email protected]" }
s.social_media_url = "http://twitter.com/erikdoe"

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

s.requires_arc = false
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.6'

s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h", "OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h", "OCMFunctions.h"].map { |file|
"Source/OCMock/" + file
}
s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMArg.h", "OCMConstraint.h",
"OCMLocation.h", "OCMMacroState.h", "OCMRecorder.h",
"OCMStubRecorder.h", "NSNotificationCenter+OCMAdditions.h",
"OCMFunctions.h"]
.map { |file| "Source/OCMock/" + file }

end
2 changes: 1 addition & 1 deletion Source/Changes.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Listing of notable changes by release. More detail is usually found in the Git
commit messages and/or the pull requests.

(unreleased)
OCMock 3.2 (2015-10-03)

* Can mock dynamic properties (imhuntingwabbits)
* Can invoke blocks passed as arguments to stubs (Stephen Fortune)
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.1.5.dmg", "OCMock 3.1.5"
createPackage "ocmock-3.2.dmg", "OCMock 3.2"
openPackageDir
end

Expand Down

0 comments on commit 9ba612d

Please sign in to comment.