-
Notifications
You must be signed in to change notification settings - Fork 0
final changes for beta1 #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
5c8e19f
final changes for beta1?
GErP83 960dffc
Update testing.yml
GErP83 f8788b4
Update FeatherMailTestSuite.swift
GErP83 a050ffd
Delete Package@swift-6.1.swift
GErP83 d14956e
Update Package.swift
GErP83 64195e2
Update .swiftformatignore
GErP83 b9448f7
separate validation logic
GErP83 3b4cc02
format
GErP83 6cf39b3
fix headers
GErP83 b991efd
Update MailError.swift
GErP83 e2f3aaa
logic changes
GErP83 8672045
Update Makefile
GErP83 890fa1d
Update Package.swift
GErP83 fb2a397
Update Package.swift
GErP83 a0c9e49
Update Package.swift
GErP83 5c8c420
Update Package.swift
GErP83 9c85575
test for inject
GErP83 21ae179
remove test dep
GErP83 49971e4
add RawMailEncoder and tests
GErP83 968f4e3
format
GErP83 7249906
Create .unacceptablelanguageignore
GErP83 773cd39
Update README.md
GErP83 f528e09
Update README.md
GErP83 105d4d0
update readme package.swift
GErP83 54fab33
Update README.md
GErP83 6fc9ddc
MailError not Equatable, Base64 is private
GErP83 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1 @@ | ||
| Package.swift | ||
| Package@swift-6.0.swift | ||
| Package@swift-6.1.swift | ||
| Package.swift |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Sources/FeatherMail/Models/Address.swift |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,52 @@ | ||
| // swift-tools-version:6.2 | ||
| // swift-tools-version:6.1 | ||
| import PackageDescription | ||
|
|
||
| let defaultSwiftSettings: [SwiftSetting] = [ | ||
| // NOTE: https://github.com/swift-server/swift-http-server/blob/main/Package.swift | ||
| var defaultSwiftSettings: [SwiftSetting] = [ | ||
|
|
||
| // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0441-formalize-language-mode-terminology.md | ||
| .swiftLanguageMode(.v6), | ||
| .enableExperimentalFeature( | ||
| "AvailabilityMacro=FeatherMailAvailability:macOS 13, iOS 16, watchOS 9, tvOS 16, visionOS 1" | ||
| ), | ||
| // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0444-member-import-visibility.md | ||
| .enableUpcomingFeature("MemberImportVisibility"), | ||
| // https://forums.swift.org/t/experimental-support-for-lifetime-dependencies-in-swift-6-2-and-beyond/78638 | ||
| .enableExperimentalFeature("Lifetimes"), | ||
| // https://github.com/swiftlang/swift/pull/65218 | ||
| .enableExperimentalFeature("AvailabilityMacro=FeatherMailAvailability:macOS 15, iOS 18, watchOS 9, tvOS 11, visionOS 2"), | ||
| ] | ||
|
|
||
| #if compiler(>=6.2) | ||
| defaultSwiftSettings.append( | ||
| // https://github.com/swiftlang/swift-evolution/blob/main/proposals/0461-async-function-isolation.md | ||
| .enableUpcomingFeature("NonisolatedNonsendingByDefault") | ||
| ) | ||
| #endif | ||
|
|
||
| let package = Package( | ||
| name: "feather-mail", | ||
|
|
||
| products: [ | ||
| .library(name: "FeatherMail", targets: ["FeatherMail"]), | ||
| .library(name: "FeatherMailTesting", targets: ["FeatherMailTesting"]), | ||
| ], | ||
| dependencies: [ | ||
| .package(url: "https://github.com/apple/swift-log", from: "1.8.0"), | ||
| // [docc-plugin-placeholder] | ||
| .package(url: "https://github.com/apple/swift-log", from: "1.6.0"), | ||
| ], | ||
|
|
||
| targets: [ | ||
| .target( | ||
| name: "FeatherMail", | ||
| dependencies: [ | ||
| .product(name: "Logging", package: "swift-log"), | ||
| ] | ||
| ), | ||
| .target( | ||
| name: "FeatherMailTesting", | ||
| .testTarget( | ||
| name: "FeatherMailTests", | ||
| dependencies: [ | ||
| .target(name: "FeatherMail"), | ||
| ], | ||
| resources: [ | ||
| .copy("Assets/feather.png") | ||
| ] | ||
| ), | ||
| .testTarget( | ||
| name: "FeatherMailTests", | ||
| dependencies: [ | ||
| .target(name: "FeatherMailTesting"), | ||
| ] | ||
| ), | ||
| ] | ||
| ], | ||
|
|
||
| ) | ||
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
GErP83 marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.