Skip to content

v4.0.1

Latest
Compare
Choose a tag to compare
@danny1113 danny1113 released this 25 Feb 00:39
· 5 commits to main since this release

Fix compile error for Swift 5.9

Swift 5.9 doesn't support partial consume, so we have to consume self entirely first, then access its property.

error: 'self' consumed more than once
    public consuming func map<NewOutput>(
                          ^
note: consumed here
        let parse = self._parse
                    ^
note: consumed again here
        return .init(selector: selector) { e in
                               ^

Full Changelog: v4.0.0...v4.0.1