bits-extra 0.0.2.1 → 0.0.2.2
raw patch · 2 files changed
+8/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- bench/Main.hs +6/−1
- bits-extra.cabal +2/−2
bench/Main.hs view
@@ -1,11 +1,16 @@+{-# LANGUAGE CPP #-}+ module Main where import Criterion.Main import Data.Bits.Pdep import Data.Bits.Pdep.Slow import Data.Bits.Pext-import Data.Monoid ((<>)) import Data.Word++#if !MIN_VERSION_base(4,13,0)+import Data.Monoid ((<>))+#endif import qualified Data.Vector.Storable as DVS
bits-extra.cabal view
@@ -1,7 +1,7 @@ cabal-version: 2.2 name: bits-extra-version: 0.0.2.1+version: 0.0.2.2 synopsis: Useful bitwise operations description: Please see the README on Github at <https://github.com/haskell-works/bits-extra#readme> category: Data, Bit@@ -12,7 +12,7 @@ copyright: 2018-2021 John Ky license: BSD-3-Clause license-file: LICENSE-tested-with: GHC == 9.2.2, GHC == 9.0.1, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5+tested-with: GHC == 9.2.2, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5 build-type: Simple extra-source-files: ChangeLog.md README.md