Skip to content

Commit

Permalink
Preparation for 3.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed Feb 16, 2020
1 parent 7fe4125 commit d7043cc
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 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.5"
s.version = "3.6"

s.summary = "Mock objects for Objective-C"
s.description = <<-DESC
Expand All @@ -17,7 +17,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.5" }
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.6" }
s.source_files = "Source/OCMock/*.{h,m}"

s.requires_arc = false
Expand Down
15 changes: 8 additions & 7 deletions Source/Changes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ commit messages and/or the pull requests.

OCMock 3.6 (2020-02-16)

* Added support for quantifiers. Please see documentation section 3.3 for
details.
* Added support for quantifiers. Please see documentation section 3.3 as well
as #302 for details
* Added preprocessor macros to disable short syntax (in case of clashes). See
section 9.6. for details.
* Switched to Carthage to manage dependencies, which is currenly only
OCHamcrest. This means you must have Carthage installed to build OCMock
(see https://github.com/Carthage/Carthage). Releases of OCMock still come
without OCHamcrest and if you want to use it, you must make it availble in
your project, using the dependency management system of your choice.
* Set up dependency management with Carthage. This means that in order to
build OCMock from source you must have Carthage installed on your system.
See https://github.com/Carthage/Carthage for details. You do not need to have
Carthage installed to use OCMock, and if you want to use OCHamcrest with
OCMock you must make OCHamcrest available in your project, using whatever
dependency management system you use for your project.
* Added description of mock object to the exception that is thrown when the
mock is used after stopMocking was called (Chaoshuai Lu)

Expand Down
2 changes: 1 addition & 1 deletion Tools/build.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def makeRelease
copySource
buildModules
signFrameworks "erik@doernenburg.com"
createPackage "ocmock-3.5.dmg", "OCMock 3.5"
createPackage "ocmock-3.6.dmg", "OCMock 3.6"
sanityCheck
openPackageDir
end
Expand Down

0 comments on commit d7043cc

Please sign in to comment.