stringsearch 0.3.2 → 0.3.3
raw patch · 16 files changed
+22/−20 lines, 16 files
Files
- CHANGES +2/−0
- Data/ByteString/Lazy/Search.hs +2/−2
- Data/ByteString/Lazy/Search/DFA.hs +1/−1
- Data/ByteString/Lazy/Search/KMP.hs +1/−1
- Data/ByteString/Lazy/Search/KarpRabin.hs +1/−1
- Data/ByteString/Search.hs +2/−2
- Data/ByteString/Search/BoyerMoore.hs +2/−2
- Data/ByteString/Search/DFA.hs +1/−1
- Data/ByteString/Search/Internal/BoyerMoore.hs +2/−2
- Data/ByteString/Search/Internal/KnuthMorrisPratt.hs +1/−1
- Data/ByteString/Search/Internal/Utils.hs +1/−1
- Data/ByteString/Search/KMP.hs +1/−1
- Data/ByteString/Search/KarpRabin.hs +1/−1
- Data/ByteString/Search/KnuthMorrisPratt.hs +1/−1
- Data/ByteString/Search/Substitution.hs +1/−1
- stringsearch.cabal +2/−2
CHANGES view
@@ -1,3 +1,5 @@+0.3.3:+- updated email address 0.3.2: - relaxed constraint on containers package (no incompatible API changes) 0.3.1:
Data/ByteString/Lazy/Search.hs view
@@ -3,7 +3,7 @@ -- Copyright : Daniel Fischer -- Chris Kuklewicz -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --@@ -16,7 +16,7 @@ -- and -- <http://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm> ----- Original authors: Daniel Fischer (daniel.is.fischer at web.de) and+-- Original authors: Daniel Fischer (daniel.is.fischer at googlemail.com) and -- Chris Kuklewicz (haskell at list.mightyreason.com). module Data.ByteString.Lazy.Search( -- * Overview -- $overview
Data/ByteString/Lazy/Search/DFA.hs view
@@ -3,7 +3,7 @@ -- Module : Data.ByteString.Lazy.Search.DFA -- Copyright : Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Lazy/Search/KMP.hs view
@@ -4,7 +4,7 @@ -- Chris Kuklewicz -- Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Lazy/Search/KarpRabin.hs view
@@ -3,7 +3,7 @@ -- Module : Data.ByteString.Lazy.Search.KarpRabin -- Copyright : (c) 2010 Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search.hs view
@@ -3,7 +3,7 @@ -- Copyright : Daniel Fischer -- Chris Kuklewicz -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --@@ -16,7 +16,7 @@ -- and -- <http://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm> ----- Original authors: Daniel Fischer (daniel.is.fischer at web.de) and+-- Original authors: Daniel Fischer (daniel.is.fischer at googlemail.com) and -- Chris Kuklewicz (haskell at list.mightyreason.com). module Data.ByteString.Search ( -- * Overview -- $overview
Data/ByteString/Search/BoyerMoore.hs view
@@ -3,7 +3,7 @@ -- Copyright : Daniel Fischer -- Chris Kuklewicz -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --@@ -15,7 +15,7 @@ -- and -- <http://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm> ----- Original authors: Daniel Fischer (daniel.is.fischer at web.de) and+-- Original authors: Daniel Fischer (daniel.is.fischer at googlemail.com) and -- Chris Kuklewicz (haskell at list.mightyreason.com). module Data.ByteString.Search.BoyerMoore {-# DEPRECATED "Use the new interface instead" #-} (
Data/ByteString/Search/DFA.hs view
@@ -3,7 +3,7 @@ -- Module : Data.ByteString.Search.DFA -- Copyright : Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search/Internal/BoyerMoore.hs view
@@ -5,7 +5,7 @@ -- Copyright : Daniel Fischer -- Chris Kuklewicz -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --@@ -18,7 +18,7 @@ -- and -- <http://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm> ----- Original authors: Daniel Fischer (daniel.is.fischer at web.de) and+-- Original authors: Daniel Fischer (daniel.is.fischer at googlemail.com) and -- Chris Kuklewicz (haskell at list.mightyreason.com). module Data.ByteString.Search.Internal.BoyerMoore (
Data/ByteString/Search/Internal/KnuthMorrisPratt.hs view
@@ -6,7 +6,7 @@ -- Chris Kuklewicz -- Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search/Internal/Utils.hs view
@@ -4,7 +4,7 @@ -- Module : Data.ByteString.Search.Internal.Utils -- Copyright : Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portabiltity : non-portable --
Data/ByteString/Search/KMP.hs view
@@ -4,7 +4,7 @@ -- Chris Kuklewicz -- Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search/KarpRabin.hs view
@@ -3,7 +3,7 @@ -- Module : Data.ByteString.Search.KarpRabin -- Copyright : (c) 2010 Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search/KnuthMorrisPratt.hs view
@@ -4,7 +4,7 @@ -- Chris Kuklewicz -- Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : non-portable (BangPatterns) --
Data/ByteString/Search/Substitution.hs view
@@ -2,7 +2,7 @@ -- Module : Data.ByteString.Search.Substitution -- Copyright : Daniel Fischer -- Licence : BSD3--- Maintainer : Daniel Fischer <daniel.is.fischer@web.de>+-- Maintainer : Daniel Fischer <daniel.is.fischer@googlemail.com> -- Stability : Provisional -- Portability : portable --
stringsearch.cabal view
@@ -7,7 +7,7 @@ -- The package version. See the Haskell package versioning policy -- (http://www.haskell.org/haskellwiki/Package_versioning_policy) for -- standards guiding when and how versions should be incremented.-Version: 0.3.2+Version: 0.3.3 -- A short (one-line) description of the package. Synopsis: Fast searching, splitting and replacing of ByteStrings@@ -35,7 +35,7 @@ -- An email address to which users can send suggestions, bug reports, -- and patches.-Maintainer: daniel.is.fischer@web.de+Maintainer: daniel.is.fischer@googlemail.com -- A copyright notice. Copyright: (c) 2007-2010