From 1cbe9f6e08203b9104f082f293755cb42941d601 Mon Sep 17 00:00:00 2001 From: Sylvain Henry <sylvain@haskus.fr> Date: Mon, 10 Aug 2020 09:48:49 +0200 Subject: [PATCH] Update README --- README.rst | 8 +++++--- ghc-api-compat.cabal | 5 +---- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/README.rst b/README.rst index 992c9a8..6b33b91 100644 --- a/README.rst +++ b/README.rst @@ -1,10 +1,12 @@ ghc-api-compat ============== -We are in the process of `renaming GHC modules <https://gitlab.haskell.org/ghc/ghc/issues/13009>`_. +GHC-API isn't stable. Especially since we have been renaming every module to put +them in the ``GHC.*`` namespace (cf `#13009 +<https://gitlab.haskell.org/ghc/ghc/issues/13009>`_). -This package aims to make the transition easier by mapping old module names to -newer module names. +This package aims to make GHC-API transitions easier by mapping old module names to +newer module names, by adding function aliases, etc. Pull requests are welcome! Build with: diff --git a/ghc-api-compat.cabal b/ghc-api-compat.cabal index 4149156..9383206 100644 --- a/ghc-api-compat.cabal +++ b/ghc-api-compat.cabal @@ -22,13 +22,10 @@ library ghc >= 8.6 default-language: Haskell2010 - if impl(ghc >= 8.10) && impl(ghc < 8.11) - reexported-modules: - GHC.Hs.PlaceHolder as PlaceHolder - if impl(ghc >= 8.10) && impl(ghc < 8.11) reexported-modules: GHC.Hs.Types as HsTypes + , GHC.Hs.PlaceHolder as PlaceHolder if impl(ghc >= 8.10) reexported-modules: -- GitLab