SwiftCheck v0.12.0 Release Notes
Release Date: 2019-03-28 // over 5 years ago-
๐ฑ โ ๏ธ Breaking Changes Ahead โ ๏ธ
- ๐ Update to Swift 5, 5-style package format, and upgrade the Xcode project to compile in Swift 5 mode
- ๐ Fix a bug where
cover
ed properties yielded a false positive if the condition was never true
๐ In the coming release, we will be reworking the coverage system to better match QuickCheck's current functionality.
Previous changes from v0.11.0
-
๐ฑ โ ๏ธ Breaking Changes Ahead โ ๏ธ
- ๐ Update to the Swift 4.2 tooling, 4.2-style package format, and upgrade the Xcode project to compile in the 4.2 mode of the Swift compiler.
- โ Removed the previously-deprecated
Gen.map
forms. Please use the correspondingGen.zip
function call itself - โ Removed
quickCheck(_ :name:)
. Use one ofquickCheck(asserting:)
orquickCheck(reporting:)
instead.