Skip to content

Commit

Permalink
chore: BumpCore (#1346)
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippeWeidmann authored Mar 20, 2024
2 parents 27a11d4 + bb11b4d commit e976dab
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -42,25 +42,25 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-core",
"state" : {
"revision" : "e760a1dd4eba0c584d5ab5b43b51c0bb9df30b3d"
"revision" : "eb590897129b2b5b9f289b6db7fd2816bcea7225"
}
},
{
"identity" : "ios-core-ui",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-core-ui",
"state" : {
"revision" : "0fcfdc2b808088d884f3f0f642ffd9fbb338c728",
"version" : "6.0.0"
"revision" : "6d069462017491b74cd1eec6a87e6333a41c15ac",
"version" : "7.0.0"
}
},
{
"identity" : "ios-create-account",
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-create-account",
"state" : {
"revision" : "955e9745329ed0e7a3c3dd869e347517ad1e20bd",
"version" : "5.0.0"
"revision" : "46f2ee2e1df00c84d29c30f191e578ad593f0784",
"version" : "6.0.0"
}
},
{
Expand Down Expand Up @@ -95,8 +95,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/Infomaniak/ios-version-checker",
"state" : {
"revision" : "152a0d4b00f6490a3acf5f68b90b855935e093a5",
"version" : "3.0.0"
"revision" : "7fc0d96c297e1a868e3e430bc1195b4d0ab70131",
"version" : "4.0.0"
}
},
{
Expand Down
6 changes: 6 additions & 0 deletions Mail/Views/New Message/Attachments/Attachable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ import UniformTypeIdentifiers
extension NSItemProvider: Attachable {
enum ErrorDomain: Error {
case UTINotFound

/// The type needs dedicated handling
case unsupportedUnderlyingType
}

private var preferredIdentifier: String {
Expand Down Expand Up @@ -67,6 +70,9 @@ extension NSItemProvider: Attachable {

case .none:
throw ErrorDomain.UTINotFound

default:
throw ErrorDomain.unsupportedUnderlyingType
}
}
}
Expand Down
8 changes: 4 additions & 4 deletions Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ let project = Project(name: "Mail",
.package(url: "https://github.com/Infomaniak/swift-concurrency", .upToNextMajor(from: "0.0.4")),
.package(
url: "https://github.com/Infomaniak/ios-core",
.revision("e760a1dd4eba0c584d5ab5b43b51c0bb9df30b3d")
.revision("eb590897129b2b5b9f289b6db7fd2816bcea7225")
),
.package(url: "https://github.com/Infomaniak/ios-core-ui", .upToNextMajor(from: "6.0.0")),
.package(url: "https://github.com/Infomaniak/ios-core-ui", .upToNextMajor(from: "7.0.0")),
.package(url: "https://github.com/Infomaniak/ios-notifications", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/Infomaniak/ios-create-account", .upToNextMajor(from: "5.0.0")),
.package(url: "https://github.com/Infomaniak/ios-create-account", .upToNextMajor(from: "6.0.0")),
.package(url: "https://github.com/Infomaniak/ios-bug-tracker", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/Infomaniak/ios-version-checker", .upToNextMajor(from: "3.0.0")),
.package(url: "https://github.com/Infomaniak/ios-version-checker", .upToNextMajor(from: "4.0.0")),
.package(url: "https://github.com/Infomaniak/swift-modal-presentation", .upToNextMajor(from: "1.0.0")),
.package(url: "https://github.com/Infomaniak/SQRichTextEditor", .upToNextMajor(from: "1.1.1")),
.package(url: "https://github.com/Infomaniak/SwiftSoup", .upToNextMajor(from: "1.1.0")),
Expand Down

0 comments on commit e976dab

Please sign in to comment.