Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Aug 31, 2021
  2. Aug 30, 2021
  3. Dec 28, 2020
  4. Apr 12, 2019
  5. Nov 24, 2018
  6. Feb 16, 2018
  7. Nov 17, 2017
  8. Oct 26, 2017
    • Herbert Valerio Riedel's avatar
      Relax coding guideline regarding module imports · d291bd1c
      Herbert Valerio Riedel authored
      I notice imports like
      
          import qualified Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      which seem overly precise to me, when `Disp.` is only used
      locally as a module prefix, and there's no other imports sharing
      the same module prefix.
      
      Instead, it should suffice to either use
      
          import qualified Text.PrettyPrint as Disp
      
      or
      
          import Text.PrettyPrint
                ( Doc, render, char, text )
      
      or in rare cases even
      
          import Text.PrettyPrint as Disp
                ( Doc, render, char, text )
      
      Hence this relaxes the coding guidelines to allow these simpler forms
      to be used.
      
      [skip ci]
      d291bd1c
  9. Oct 20, 2017
    • Moritz Angermann's avatar
      Add note regarding bootstrap to the main README.md · 68b6f6d3
      Moritz Angermann authored
      I've been failing to find this information a few times already. And I still remember not being able to find it the first time, without searching for quite a while. I hope this adds clarity to installing Cabal without cabal, and those who end up with just an unpacked ghc an no cabal to use.
      68b6f6d3
  10. Jul 05, 2017
  11. May 07, 2017
  12. Mar 07, 2017
  13. Mar 06, 2017
  14. Jan 22, 2017
  15. Jan 13, 2017
  16. Dec 07, 2016
  17. Oct 31, 2016
  18. Sep 16, 2016
  19. Sep 06, 2016
  20. Sep 04, 2016
  21. Aug 31, 2016
  22. Jul 26, 2016
  23. Jul 21, 2016
  24. Jul 17, 2016
  25. Jul 16, 2016
  26. Jul 15, 2016
  27. Jul 14, 2016
  28. May 05, 2016
  29. Feb 09, 2016
  30. Oct 02, 2014
  31. Jul 06, 2014
  32. Apr 15, 2014
    • Ian D. Bollinger's avatar
      README: Fix links · d7422d02
      Ian D. Bollinger authored
      For some reason github is finicky when it comes to local links. Also,
      I'm dyslexic it seems when it comes to Markdown's link syntax.
      d7422d02
Loading