From a769a9eeb3dc73cf23c2bae6721b106c0f3de3af Mon Sep 17 00:00:00 2001 From: Erik Doernenburg Date: Wed, 12 Aug 2015 21:44:24 +0200 Subject: [PATCH] Preparation for 3.1.3 release. --- OCMock.podspec | 4 ++-- README.md | 2 -- Source/Changes.txt | 6 ++++-- Tools/build.rb | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/OCMock.podspec b/OCMock.podspec index 477fbd2e..dd07b6ba 100644 --- a/OCMock.podspec +++ b/OCMock.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OCMock" - s.version = "3.1.2" + s.version = "3.1.3" 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.2" } + s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.1.3" } 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/README.md b/README.md index 7eaa8118..948822e6 100644 --- a/README.md +++ b/README.md @@ -3,8 +3,6 @@ OCMock OCMock is an Objective-C implementation of mock objects. -Github is used to store and manage the source code. - For downloads, documentation, and support please visit [ocmock.org][]. [![Build Status](https://travis-ci.org/erikdoe/ocmock.svg?branch=master)](https://travis-ci.org/erikdoe/ocmock) diff --git a/Source/Changes.txt b/Source/Changes.txt index 81e91254..20ab8607 100644 --- a/Source/Changes.txt +++ b/Source/Changes.txt @@ -1,11 +1,13 @@ Listing of notable changes by release. More detail is usually found in the Git commit messages and/or the pull requests. -OCMock 3.1.3 (unreleased) +OCMock 3.1.3 (2015-08-12) * Now throwing exception when trying to create mocks for nil (Nick Gravelyn) * Fixed ARC related bug when boxing macro args (Richard Ross) -* Added target for dynamic iOS framework (Piet Brauer) +* Added target for dynamic iOS framework, which makes OCMock compatible with + Carthage (Piet Brauer) +* Memory management and other small bug fixes OCMock 3.1.2 (2015-01-08) diff --git a/Tools/build.rb b/Tools/build.rb index 728ee4f0..fec530c0 100755 --- a/Tools/build.rb +++ b/Tools/build.rb @@ -12,7 +12,7 @@ def makeRelease downloadSource copySource buildModules - createPackage "ocmock-3.1.2.dmg", "OCMock 3.1.2" + createPackage "ocmock-3.1.3.dmg", "OCMock 3.1.3" openPackageDir end