Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
5c8e19f
final changes for beta1?
GErP83 Jan 15, 2026
960dffc
Update testing.yml
GErP83 Jan 15, 2026
f8788b4
Update FeatherMailTestSuite.swift
GErP83 Jan 15, 2026
a050ffd
Delete Package@swift-6.1.swift
GErP83 Jan 15, 2026
d14956e
Update Package.swift
GErP83 Jan 15, 2026
64195e2
Update .swiftformatignore
GErP83 Jan 15, 2026
b9448f7
separate validation logic
GErP83 Jan 16, 2026
3b4cc02
format
GErP83 Jan 16, 2026
6cf39b3
fix headers
GErP83 Jan 16, 2026
b991efd
Update MailError.swift
GErP83 Jan 19, 2026
e2f3aaa
logic changes
GErP83 Jan 26, 2026
8672045
Update Makefile
GErP83 Jan 26, 2026
890fa1d
Update Package.swift
GErP83 Jan 26, 2026
fb2a397
Update Package.swift
GErP83 Jan 26, 2026
a0c9e49
Update Package.swift
GErP83 Jan 26, 2026
5c8c420
Update Package.swift
GErP83 Jan 26, 2026
9c85575
test for inject
GErP83 Jan 26, 2026
21ae179
remove test dep
GErP83 Jan 26, 2026
49971e4
add RawMailEncoder and tests
GErP83 Jan 27, 2026
968f4e3
format
GErP83 Jan 27, 2026
7249906
Create .unacceptablelanguageignore
GErP83 Jan 27, 2026
773cd39
Update README.md
GErP83 Jan 27, 2026
f528e09
Update README.md
GErP83 Jan 27, 2026
105d4d0
update readme package.swift
GErP83 Jan 28, 2026
54fab33
Update README.md
GErP83 Jan 28, 2026
6fc9ddc
MailError not Equatable, Base64 is private
GErP83 Jan 29, 2026
e4fc2b5
Update Package.swift
GErP83 Jan 29, 2026
c13bdd9
Merge branch 'main' into fix/package
GErP83 Jan 29, 2026
0304771
add Foundation to test
GErP83 Jan 29, 2026
f8c0f3b
Update RawMailEncoderTests.swift
GErP83 Jan 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions Package.resolved

This file was deleted.

11 changes: 5 additions & 6 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ var defaultSwiftSettings: [SwiftSetting] = [
// 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"),
.enableExperimentalFeature("AvailabilityMacro=featherMail:macOS 15, iOS 18, watchOS 9, tvOS 11, visionOS 2"),
]

#if compiler(>=6.2)
Expand All @@ -28,15 +28,13 @@ let package = Package(
],
dependencies: [
// [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"),
]
dependencies: [],
swiftSettings: defaultSwiftSettings
),
.testTarget(
name: "FeatherMailTests",
Expand All @@ -45,7 +43,8 @@ let package = Package(
],
resources: [
.copy("Assets/feather.png")
]
],
swiftSettings: defaultSwiftSettings
),
],

Expand Down
1 change: 1 addition & 0 deletions Tests/FeatherMailTests/RawMailEncoderTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
// Created by Binary Birds on 2026. 01. 26..
//

import Foundation
import Testing
@testable import FeatherMail

Expand Down