Skip to content

Commit

Permalink
Preparation for 3.9.4 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
erikdoe committed May 26, 2024
1 parent 47c54d6 commit 2c0bfd3
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ on:

jobs:
build-and-run-unit-tests:
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: macOS
run: make ci-macos
check-dist:
needs: build-and-run-unit-tests
runs-on: macos-13
runs-on: macos-14
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: SwiftPM
run: make ci-swiftpm
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.9.3"
s.version = "3.9.4"

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 = "https://toot.thoughtworks.com/@edoernen"

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

s.requires_arc = false
Expand Down
5 changes: 5 additions & 0 deletions Source/Changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Listing of notable changes by release. More detail is usually found in the Git
commit messages and/or the pull requests.

OCMock 3.9.4 (2024-05-26)

* Fixed incompatibility with new version of Xcode


OCMock 3.9.3 (2023-11-15)

* Removed visionOS from podspec because it's not fully supported yet.
Expand Down
6 changes: 3 additions & 3 deletions Source/OCMock/OCMock-Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>3.9.3</string>
<string>3.9.4</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>3.9.3</string>
<string>3.9.4</string>
<key>NSHumanReadableCopyright</key>
<string>Copyright © 2004-2023 Erik Doernenburg and contributors</string>
<string>Copyright © 2004-2024 Erik Doernenburg and contributors</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down

0 comments on commit 2c0bfd3

Please sign in to comment.