packages feed

minimorph 0.1.6.0 → 0.1.6.1

raw patch · 3 files changed

+3/−7 lines, 3 filesPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

API changes (from Hackage documentation)

- NLP.Minimorph.Number: instance Eq Number
- NLP.Minimorph.Number: instance Eq a => Eq (SingPlu a)
- NLP.Minimorph.Number: instance Show Number
- NLP.Minimorph.Number: instance Show a => Show (SingPlu a)
- NLP.Minimorph.Number: pl :: SingPlu a -> a
- NLP.Minimorph.Number: sg :: SingPlu a -> a
- NLP.Minimorph.Util: showT :: Show a => a -> Text
+ NLP.Minimorph.Number: [pl] :: SingPlu a -> a
+ NLP.Minimorph.Number: [sg] :: SingPlu a -> a
+ NLP.Minimorph.Number: instance GHC.Classes.Eq NLP.Minimorph.Number.Number
+ NLP.Minimorph.Number: instance GHC.Classes.Eq a => GHC.Classes.Eq (NLP.Minimorph.Number.SingPlu a)
+ NLP.Minimorph.Number: instance GHC.Show.Show NLP.Minimorph.Number.Number
+ NLP.Minimorph.Number: instance GHC.Show.Show a => GHC.Show.Show (NLP.Minimorph.Number.SingPlu a)
+ NLP.Minimorph.Util: infixr 6 <+>

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright (c) 2012, Computational Linguistics Ltd.+Copyright (c) 2012-2017, Computational Linguistics Ltd.  All rights reserved. 
NLP/Minimorph/Util.hs view
@@ -8,7 +8,7 @@ -- -- Text utility functions. module NLP.Minimorph.Util- ( tTakeEnd, tDropEnd, (<>), (<+>), tshow, showT )+ ( tTakeEnd, tDropEnd, (<>), (<+>), tshow )  where  import Data.Monoid ((<>))@@ -34,7 +34,3 @@ -- | Show a value in Text format. tshow :: Show a => a -> Text tshow = T.pack . show--showT :: Show a => a -> Text-{-# DEPRECATED showT "The function is renamed to @tshow@." #-}-showT = tshow
minimorph.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/  name:                minimorph-version:             0.1.6.0+version:             0.1.6.1 synopsis:            English spelling functions with an emphasis on simplicity. description:         A set of simplistic functions capturing the more regular                      parts of English spelling (for generation, not parsing).