indentation 0.3 → 0.3.0.1
raw patch · 7 files changed
+11/−3 lines, 7 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- indentation.cabal +1/−1
- src/Text/Parsec/Indentation.hs +1/−0
- src/Text/Parsec/Indentation/Char.hs +1/−0
- src/Text/Parsec/Indentation/Token.hs +1/−0
- src/Text/Parser/Indentation/Implementation.hs +1/−1
- src/Text/Trifecta/Indentation.hs +2/−1
CHANGELOG.md view
@@ -1,3 +1,7 @@+# 0.3.0.1 #++* Hyperlink Haddock of re-exported modules to the other packages.+ # 0.3 # * Broke package up into `indentation-core`, `indentation-parsec` and `indentation-trifecta` packages.
indentation.cabal view
@@ -1,5 +1,5 @@ name: indentation-version: 0.3+version: 0.3.0.1 synopsis: Indentation sensitive parsing combinators for Parsec and Trifecta description: Indentation sensitive parsing combinators for Parsec and Trifecta. .
src/Text/Parsec/Indentation.hs view
@@ -1,4 +1,5 @@ {-# language PackageImports #-}+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation.html Text.Parsec.Indentation> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>. module Text.Parsec.Indentation (module Impl) where import "indentation-parsec" Text.Parsec.Indentation as Impl
src/Text/Parsec/Indentation/Char.hs view
@@ -1,4 +1,5 @@ {-# language PackageImports #-}+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation-Char.html Text.Parsec.Indentation.Char> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>. module Text.Parsec.Indentation.Char (module Impl) where import "indentation-parsec" Text.Parsec.Indentation.Char as Impl
src/Text/Parsec/Indentation/Token.hs view
@@ -1,4 +1,5 @@ {-# language PackageImports #-}+-- | This module re-exports <https://hackage.haskell.org/package/indentation-parsec/docs/Text-Parsec-Indentation-Token.html Text.Parsec.Indentation.Token> from <https://hackage.haskell.org/package/indentation-parsec indentation-parsec>. module Text.Parsec.Indentation.Token (module Impl) where import "indentation-parsec" Text.Parsec.Indentation.Token as Impl
src/Text/Parser/Indentation/Implementation.hs view
@@ -1,5 +1,5 @@ {-# language PackageImports #-}-+-- | This module re-exports <https://hackage.haskell.org/package/indentation-core/docs/Text-Parser-Indentation-Implementation.html Text.Parser.Indentation.Implementation> from <https://hackage.haskell.org/package/indentation-core indentation-core>. module Text.Parser.Indentation.Implementation (module Impl) where
src/Text/Trifecta/Indentation.hs view
@@ -1,4 +1,5 @@ {-# language PackageImports #-}+-- | This module re-exports <https://hackage.haskell.org/package/indentation-trifecta/docs/Text-Trifecta-Indentation.html Text.Trifecta.Indentation> from <https://hackage.haskell.org/package/indentation-trifecta indentation-trifecta>. module Text.Trifecta.Indentation (module Impl) where -import "indentation-trifecta" Text.Trifecta.Indentation as Impl+import "indentation-trifecta" Text.Trifecta.Indentation as Impl hiding (Token)