Releases: thoughtbot/Runes
5.1: five point two
This small release adds support for Swift 5.2 tooling, which means that if you're using Swift 5.2 you'll no longer see our test dependencies downloaded locally when you're just trying to annoy your coworkers with illegible code like a normal person.
5.0: Result
This release adds operator definitions for the new Result<T, E>
type in Swift 5's stdlib. Accordingly, Runes 5.0 drops support for Swift versions lower than 5.0.
4.2.2: Semi-Autoclosure
This is a bug fix release to fix a compiler error that occured under Swift 5.0 when we tried to pass an autoclosure directly to another argument expecting an autoclosure, which is now disallowed. (Thanks @madcato!) This change should be backwards compatible with previous Swift versions.
4.2.1: Transitive Nonsense
This is a minor release to fix Runes as a transitive dependency when used with Swift Package Manager.
4.2: What does compatibility even mean anymore
This release fixes compatibility with Xcode 10.2 and Swift 5. There are no functional changes.
4.1.1: Xcode Nonsense
This updates the Xcode project (and some internal dependencies) so that no warnings are thrown by the Xcode project.
This will almost certainly mean nothing to you, unless you import this project into your project, in which case this will mean everything
4.1: Full Blown Applicative
This release fleshes out the rest of the Applicative implementations for Optional
and Array
. This adds two new operators to the mix for each type:
<*
performs an applicative operation, discarding the right hand value*>
performs an applicative operation, discarding the left hand value
We're also adding full implementations for Alternative for both types:
<|>
performs an alternative operationempty
constructs an empty value (basically the dual ofpure
)Optional
now has an.or
instance method that acts as a named version of<|>
.
4.0.1: Even more boring Swift Package Manager bugfix release title
4.0.1 fixes issues with building Runes via Swift Package Manager that were caused by a change in the way SPM expected test directories to be structured.
4.0.0: Boring Swift 3 Release Title
Official Swift 3.0 release!
Pretty much all @gfontenot on this one and some new operators from @inamiy
3.2.1: Legacy
3.2.1 adds better support for Xcode 8 and Swift 2.3 by recording these preferences in the project file. This will be the last release to support Swift 2.X, and master will move forward with Swift 3.0 support.