IntersectMBO / bech32

Haskell implementation of the Bech32 address format (BIP 0173).
Apache License 2.0
44 stars 13 forks source link

Support `QuickCheck` version `2.15`. #70

Closed jonathanknowles closed 4 months ago

jonathanknowles commented 4 months ago

QuickCheck version 2.15 has been released: https://hackage.haskell.org/package/QuickCheck-2.15

However, the bech32 package has the following upper bound that prevents building with the new release: QuickCheck < 2.15

Suggested solution: after testing for compatibility with version 2.15 of QuickCheck, bump the upper bound to: QuickCheck < 2.16

Related issue: https://github.com/commercialhaskell/stackage/issues/7391