Skip to content

Commit 2c0bfd3

Browse files
committed
Preparation for 3.9.4 release.
1 parent 47c54d6 commit 2c0bfd3

File tree

4 files changed

+14
-9
lines changed

4 files changed

+14
-9
lines changed

.github/workflows/build-and-test.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ on:
1010

1111
jobs:
1212
build-and-run-unit-tests:
13-
runs-on: macos-13
13+
runs-on: macos-14
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: macOS
1717
run: make ci-macos
1818
check-dist:
1919
needs: build-and-run-unit-tests
20-
runs-on: macos-13
20+
runs-on: macos-14
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: SwiftPM
2424
run: make ci-swiftpm

OCMock.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "OCMock"
3-
s.version = "3.9.3"
3+
s.version = "3.9.4"
44

55
s.summary = "Mock objects for Objective-C"
66
s.description = <<-DESC
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
1717
s.author = { "Erik Doernenburg" => "[email protected]" }
1818
s.social_media_url = "https://toot.thoughtworks.com/@edoernen"
1919

20-
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.9.3" }
20+
s.source = { :git => "https://github.com/erikdoe/ocmock.git", :tag => "v3.9.4" }
2121
s.source_files = "Source/OCMock/*.{h,m}"
2222

2323
s.requires_arc = false

Source/Changes.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Listing of notable changes by release. More detail is usually found in the Git
22
commit messages and/or the pull requests.
33

4+
OCMock 3.9.4 (2024-05-26)
5+
6+
* Fixed incompatibility with new version of Xcode
7+
8+
49
OCMock 3.9.3 (2023-11-15)
510

611
* Removed visionOS from podspec because it's not fully supported yet.

Source/OCMock/OCMock-Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
<key>CFBundlePackageType</key>
1818
<string>FMWK</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>3.9.3</string>
20+
<string>3.9.4</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>3.9.3</string>
24+
<string>3.9.4</string>
2525
<key>NSHumanReadableCopyright</key>
26-
<string>Copyright © 2004-2023 Erik Doernenburg and contributors</string>
26+
<string>Copyright © 2004-2024 Erik Doernenburg and contributors</string>
2727
<key>NSPrincipalClass</key>
2828
<string></string>
2929
</dict>

0 commit comments

Comments
 (0)