aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES2
-rw-r--r--src/Distribution/Haddock.hs4
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 0e975248..2ff18815 100644
--- a/CHANGES
+++ b/CHANGES
@@ -13,6 +13,8 @@ Changes in version 2.0.0.0:
* Haddock understands literate source files
+ * Add a small library to read Haddock's interface files
+
* Add a flag -B for passing the path to the GHC lib dir
* Add a flag --optghc for passing options to GHC
diff --git a/src/Distribution/Haddock.hs b/src/Distribution/Haddock.hs
index 2d0f3dc7..6f5f7252 100644
--- a/src/Distribution/Haddock.hs
+++ b/src/Distribution/Haddock.hs
@@ -7,7 +7,11 @@
module Distribution.Haddock (
readInterfaceFile,
+ InterfaceFile(..),
+ LinkEnv,
+ InstalledInterface(..)
) where
import Haddock.InterfaceFile
+import Haddock.Types