From 51ce477be2f4bba577dc36568eb1d912f8a18bf2 Mon Sep 17 00:00:00 2001 From: Erik Doernenburg Date: Sun, 6 Jul 2014 20:00:08 +0100 Subject: [PATCH] Preparation for 3.0.1 release. --- OCMock.podspec | 4 ++-- Source/Changes.txt | 4 ++-- Tools/build.rb | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/OCMock.podspec b/OCMock.podspec index 6bf23c4a..ce312442 100644 --- a/OCMock.podspec +++ b/OCMock.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OCMock" - s.version = "3.0" + s.version = "3.0.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.0" } + s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.0.1" } s.source_files = "Source/OCMock/*.{h,m}" s.public_header_files = ["OCMock.h", "OCMockObject.h", "OCMockRecorder.h", "OCMArg.h", "OCMConstraint.h", "OCMLocation.h", "OCMMacroState.h", "NSNotificationCenter+OCMAdditions.h"].map { |file| diff --git a/Source/Changes.txt b/Source/Changes.txt index 81f106e6..6c1991ef 100644 --- a/Source/Changes.txt +++ b/Source/Changes.txt @@ -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. -OCMock 3.0.1 (unreleased) +OCMock 3.0.1 (2014-07-06) * Fixed bug that prevented stubs from returning nil * Fixed bug related to handling of weak references @@ -9,7 +9,7 @@ OCMock 3.0.1 (unreleased) * Added support for matching of char* arguments -OCMock 3.0 (2013-06-12) +OCMock 3.0 (2014-06-12) * Added macro for verify with delay * Fixed several critical bugs diff --git a/Tools/build.rb b/Tools/build.rb index 70c87368..51ec8809 100755 --- a/Tools/build.rb +++ b/Tools/build.rb @@ -12,7 +12,7 @@ def makeRelease downloadSource copySource buildModules - createPackage "ocmock-3.0.dmg", "OCMock 3.0" + createPackage "ocmock-3.0.1.dmg", "OCMock 3.0.1" openPackageDir end