packages feed

fuzzyset 0.1.0.8 → 0.1.1

raw patch · 2 files changed

+6/−2 lines, 2 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- Data.FuzzySet.Util: (×) :: Num α => α -> α -> α

Files

fuzzyset.cabal view
@@ -1,5 +1,5 @@ name:                fuzzyset-version:             0.1.0.8+version:             0.1.1 synopsis:            Fuzzy set for approximate string matching description:         This library is based on the Python and JavaScript libraries with the same name. homepage:            https://github.com/laserpants/fuzzyset-haskell@@ -7,7 +7,7 @@ license-file:        LICENSE author:              Johannes Hildén maintainer:          hildenjohannes@gmail.com-copyright:           2017 Johannes Hildén+copyright:           2019 Johannes Hildén category:            Data build-type:          Simple extra-source-files:  README.md
src/Data/FuzzySet/Util.hs view
@@ -10,7 +10,9 @@ #if !MIN_VERSION_base_unicode_symbols(0,2,3)   , (−) #endif+#if !MIN_VERSION_base_unicode_symbols(0,2,4)   , (×)+#endif   ) where  import Data.Char                       ( isAlphaNum, isSpace )@@ -78,7 +80,9 @@ {-# INLINE (−) #-} #endif +#if !MIN_VERSION_base_unicode_symbols(0,2,4) -- | Another unicode operator. This one for multiplication. (×) ∷ Num α ⇒ α → α → α (×) = (*) {-# INLINE (×) #-}+#endif