Skip to content

Commit

Permalink
Bump version to 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonreid committed Aug 12, 2017
1 parent 94fba1c commit e991e6f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
11 changes: 6 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
UPCOMING VERSION
----------------
Version 5.0.0
-------------
_12 Aug 2017_

OCMockito now requires OCHamcrest v7.0.0 or higher.

**Features:**

- Added `isKindOfClass:` to class-and-protocol mocks. _Thank to: Kylan McBride_
- Support protocol class methods. _Thank to: Kylan McBride_
- Added `isKindOfClass:` to class-and-protocol mocks. _Thanks to: Kylan McBride_
- Support protocol class methods. _Thanks to: Kylan McBride_

**Fixes:**

- Avoid potential problem iterating over mutable array. _Thank to: David Siebecker_
- Avoid potential problem iterating over mutable array. _Thanks to: David Siebecker_
- Fixed nullability annotation mistakes.


Expand Down
4 changes: 2 additions & 2 deletions OCMockito.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'OCMockito'
s.version = '4.1.0'
s.version = '5.0.0'
s.summary = 'OCMockito is an Objective-C implementation of Mockito, supporting creation, verification and stubbing of mock objects.'
s.description = <<-DESC
OCMockito is an Objective-C implementation of Mockito, supporting creation,
Expand All @@ -24,7 +24,7 @@ Pod::Spec.new do |s|
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.source = { :git => 'https://github.com/jonreid/OCMockito.git', :tag => 'v4.1.0' }
s.source = { :git => 'https://github.com/jonreid/OCMockito.git', :tag => 'v5.0.0' }
s.source_files = 'Source/OCMockito/**/*.{h,m}', 'Source/ThirdParty/**/*.{h,m}'
s.public_header_files = 'Source/OCMockito/Core/MKTNonObjectArgumentMatching.h', 'Source/OCMockito/Core/OCMockito.h', 'Source/OCMockito/Invocation/NSInvocation+OCMockito.h', 'Source/OCMockito/Mocking/MKTBaseMockObject.h', 'Source/OCMockito/Mocking/MKTClassObjectMock.h', 'Source/OCMockito/Mocking/MKTObjectAndProtocolMock.h', 'Source/OCMockito/Mocking/MKTObjectMock.h', 'Source/OCMockito/Mocking/MKTProtocolMock.h', 'Source/OCMockito/Stubbing/MKTOngoingStubbing.h'
s.requires_arc = true
Expand Down
4 changes: 3 additions & 1 deletion Source/MakeDistribution.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
VERSION=4.1.0
#!/bin/bash

VERSION=5.0.0
DISTFILE=OCMockito-${VERSION}
DISTPATH=build/${DISTFILE}
PROJECTROOT=..
Expand Down
2 changes: 2 additions & 0 deletions Source/MakeIOSFramework.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/bin/bash

# First build the OS X framework to get its folder structure.
xcodebuild -configuration Release -target OCMockito -sdk macosx

Expand Down
4 changes: 2 additions & 2 deletions Source/OCMockito-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>4.1.0</string>
<string>5.0.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>4.1.0</string>
<string>5.0.0</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2017 Jonathan M. Reid</string>
<key>NSPrincipalClass</key>
Expand Down

0 comments on commit e991e6f

Please sign in to comment.