Remove throw and assert exports.

This commit is contained in:
Stephen Diehl
2016-06-30 17:59:09 -04:00
parent 205643ea14
commit cef28ed3a0
3 changed files with 8 additions and 3 deletions
+2
View File
@@ -1,9 +1,11 @@
0.1.6
=====
* Adds uncatchable panic exception throwing using Text message.
* Removes ``printf``
* Removes ``string-conv`` dependency so Stack build works without ``extra-deps``.
* Brings ``Callstack`` machinery in for GHC 8.x.
* Removes ``throw`` and ``assert`` from ``Control.Exception`` exports.
0.1.5
=====
+2 -2
View File
@@ -61,14 +61,14 @@ import GHC.OverloadedLabels as X (
)
import GHC.ExecutionStack as X (
Location(..),
Location(..)
, SrcLoc(..)
, getStackTrace
, showStackTrace
)
import GHC.Stack as X (
, CallStack
CallStack
, HasCallStack
, callStack
, SrcLoc
+4 -1
View File
@@ -311,7 +311,10 @@ import System.IO as X (
import Control.Monad.ST as X
-- Concurrency and Parallelism
import Control.Exception as X
import Control.Exception as X hiding (
throw
, assert
)
import Control.Monad.STM as X
import Control.Concurrent as X
import Control.Concurrent.Async as X