bibtex 0.1.0.5 → 0.1.0.6
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~bytestringPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: bytestring
API changes (from Hackage documentation)
Files
- bibtex.cabal +2/−2
- src/Text/BibTeX/Parse.hs +1/−1
bibtex.cabal view
@@ -1,5 +1,5 @@ Name: bibtex-Version: 0.1.0.5+Version: 0.1.0.6 License: BSD3 License-File: LICENSE Author: Henning Thielemann <haskell@henning-thielemann.de>@@ -76,7 +76,7 @@ location: http://code.haskell.org/~thielema/bibtex/ Source-Repository this- tag: 0.1.0.5+ tag: 0.1.0.6 type: darcs location: http://code.haskell.org/~thielema/bibtex/
src/Text/BibTeX/Parse.hs view
@@ -161,7 +161,7 @@ bibIdentifier :: Parser String bibIdentifier = lexeme $- liftM2 (:) (letter <|> char '_') (many (alphaNum <|> oneOf "&;:-_.?+/"))+ liftM2 (:) (alphaNum <|> char '_') (many (alphaNum <|> oneOf "&;:-_.?+/")) {- |