Skip to content
Snippets Groups Projects
This project is mirrored from https://github.com/haskell/Cabal. Pull mirroring updated .
  1. Jan 26, 2022
  2. Jan 20, 2022
  3. Sep 29, 2021
  4. Sep 28, 2021
  5. Aug 31, 2021
  6. Aug 30, 2021
  7. Dec 28, 2020
  8. Apr 12, 2019
  9. Nov 24, 2018
  10. Feb 16, 2018
  11. Nov 17, 2017
  12. 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
  13. 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
  14. Jul 05, 2017
  15. May 07, 2017
  16. Mar 07, 2017
  17. Mar 06, 2017
  18. Jan 22, 2017
  19. Jan 13, 2017
  20. Dec 07, 2016
  21. Oct 31, 2016
  22. Sep 16, 2016
  23. Sep 06, 2016
  24. Sep 04, 2016
  25. Aug 31, 2016
  26. Jul 26, 2016
  27. Jul 21, 2016
  28. Jul 17, 2016
  29. Jul 16, 2016
  30. Jul 15, 2016
  31. Jul 14, 2016
  32. May 05, 2016
  33. Feb 09, 2016
Loading