Skip to content

Commit

Permalink
Merge pull request #84 from bugsnag/adding_support_for_catalyst
Browse files Browse the repository at this point in the history
Adding catalyst platform support
  • Loading branch information
matthewjhowells authored Sep 16, 2024
2 parents 47fee06 + c453e25 commit 080fadd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
fail-fast: false
matrix:
ruby-version: ['2.5']
os: [ubuntu-20.04, macos-10.15]
os: [ubuntu-20.04, macos-13]

steps:
- uses: actions/checkout@v2
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.3.1 (04-09-2024)

## Bug fixes
* Add support for `catalyst` platform.
[#83](https://github.com/bugsnag/bugsnag-dsym-upload/issues/83)

## 2.3.0 (08-02-2023)

## Enhancements
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.3.0
2.3.1
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def self.details
end

def self.is_supported?(platform)
[:ios, :mac, :tvos].include?(platform)
[:ios, :mac, :tvos, :catalyst].include?(platform)
end

def self.available_options
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Fastlane
module Bugsnag
VERSION = "2.3.0"
VERSION = "2.3.1"
end
end

0 comments on commit 080fadd

Please sign in to comment.