0.3 Release (#115)

* Add total ConvertText alternative to Conv

* Explain ConvertText's meaning

* Rename convertText to toS for compatibility

* 0.3.0 Refactor (#111)

* Begin work on 0.3 refactor

* Remove old docs folder

* Fix dodgy exports

* 4.8 constraint for null and length

* Guards for Semigroup export for base<4.9

* Fix Data.Bits exports

* Guards for typeable exports

* Remove unused pragmas

* Update hlint.yaml

* Use liftM because of pre-AMP quirkk

* Data.Char exports

* Rework Exception exports

* Fix bounds

* Adding Monad.Fail shim

* Fix displayException export

* Explicit GHC.Prim import for ancient ghc

* Explicit raise# for base-4.7

* Flush legacy testing infrastructure

* Update git location

* Update README

* Add Partial module

* Add concurrency exports

* Explicit GHC.Float exports

* Bounds for threadWaitReadSTM, threadWaitWriteSTM, forkOSWithUnmask

* Fix for weird undocumented underflowError weirdness

* forkOSWithUnask for base>4.8

* Fix GHC.Real exports pre base-4.7

* Fix withMVarMasked for base-4.7

* Update nix derivation

* Update derivation

* Update derivation

* Explicit functor exports

* <$ export

* Overwrite binary

* Fix some missing exports

* Update Changelog

* Minor export fixes base<4.9

* Explicit exports

* Export handler

* Generate export lists for multiple versions (#114)

* Generate export lists for #112

* Make export lists format OccName uniformly

* Make compile on ancient GHC

* Use Foldable.concat

* Hacks to make ghc-7.6 API happy

* liftIO shim

* Fix sortOn warning

* Update ChangeLog

* Update base bounds

* Export conventions

* Update Haddocks

* Document GHC magic
This commit is contained in:
Stephen Diehl
2020-01-24 11:06:09 +00:00
committed by GitHub
parent 03f73d8cde
commit 2666f1e830
93 changed files with 8668 additions and 2839 deletions
+12 -30
View File
@@ -1,32 +1,14 @@
#!/usr/bin/env bash
set +e
set -e
echo -e "\e[92mLTS 7.8"
STACK_YAML=stack-7.8.yaml stack build --no-terminal
echo -e "\e[92mLTS 7.10"
STACK_YAML=stack-7.10.yaml stack build --no-terminal
echo -e "\e[92mLTS 8.0"
STACK_YAML=stack-8.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 9.0"
STACK_YAML=stack-9.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 10.0"
STACK_YAML=stack-10.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 11.0"
STACK_YAML=stack-11.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 12.0"
STACK_YAML=stack-12.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 13.0"
STACK_YAML=stack-13.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 13.0"
STACK_YAML=stack-14.0.yaml stack build --no-terminal
echo -e "\e[92mLTS 14.0"
STACK_YAML=stack-14.0.yaml stack build --no-terminal
stack build --resolver lts-4.0
stack build --resolver lts-5.0
stack build --resolver lts-6.0
stack build --resolver lts-7.0
stack build --resolver lts-8.0
stack build --resolver lts-9.0
stack build --resolver lts-10.0
stack build --resolver lts-11.0
stack build --resolver lts-12.0
stack build --resolver lts-13.0
stack build --resolver lts-14.0