Skip to content

Rapid 1.2.0

Choose a tag to compare

@mba6comma1 mba6comma1 released this 27 Aug 17:18
· 129 commits to stable since this release

Release Notes

  • The ++, --, &++, and &-- operators have been deprecated; see this Swift Evolution proposal for reasons as to why. Use += 1, -= 1, &+= 1, and &-= 1 instead. The operators will be marked as unavailable in Rapid 2, and will be removed entirely in Rapid 3.
  • Clamped now conforms to Sendable when its Value type is Sendable
  • Added the <- operator as an alias for configure(_:using:)
  • Added isNilOrEmpty and isNotNilOrEmpty for optional collections

Full Changelog: v1.1.0...v1.2.0