fasta 0.5.1.3 → 0.5.1.5
raw patch · 3 files changed
+4/−4 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- fasta.cabal +2/−2
- src/Data/Fasta/Text/Lazy/Parse.hs +1/−1
- src/Data/Fasta/Text/Parse.hs +1/−1
fasta.cabal view
@@ -10,7 +10,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.5.1.3+version: 0.5.1.5 -- A short (one-line) description of the package. synopsis: A simple, mindless parser for fasta files.@@ -64,7 +64,7 @@ -- other-modules: -- Other library packages from which modules are imported.- build-depends: base >=4.6 && <4.8,+ build-depends: base >=4.6 && <4.9, parsec >=3.1.0 && <4.0, text >=1.1.0 && <1.4, containers >= 0.5 && <0.6,
src/Data/Fasta/Text/Lazy/Parse.hs view
@@ -41,7 +41,7 @@ . map toUpper . removeWhitespace $ fseq } ) where- removeWhitespace = filter (`notElem` "\n\r ")+ removeWhitespace = filter (`notElem` ("\n\r " :: String)) fastaFile :: Parsec T.Text u [FastaSequence] fastaFile = do
src/Data/Fasta/Text/Parse.hs view
@@ -42,7 +42,7 @@ . removeWhitespace $ fseq } ) where- removeWhitespace = filter (`notElem` "\n\r ")+ removeWhitespace = filter (`notElem` ("\n\r " :: String)) fastaFile :: Parsec T.Text u [FastaSequence] fastaFile = do