diff --git a/ChannelT.cabal b/ChannelT.cabal
--- a/ChannelT.cabal
+++ b/ChannelT.cabal
@@ -1,7 +1,7 @@
 name:                ChannelT
-version:             0.0.0.1
+version:             0.0.0.2
 synopsis:            Generalized stream processors
-description:         A mutual generalization of [pipes](https://hackage.haskell.org/package/pipes) and [machines](https://hackage.haskell.org/package/machines); a library for exploring a particular corner of the design space of streaming IO (and other related tasks) in Haskell.
+description:         A mutual generalization of <https://hackage.haskell.org/package/pipes pipes> and <https://hackage.haskell.org/package/machines machines>; a library for exploring a particular corner of the design space of streaming IO (and other related tasks) in Haskell.
 license:             BSD3
 license-file:        LICENSE
 author:              Alexander Altman
diff --git a/src/Control/Monad/Channel.hs b/src/Control/Monad/Channel.hs
--- a/src/Control/Monad/Channel.hs
+++ b/src/Control/Monad/Channel.hs
@@ -1,4 +1,4 @@
-{-# LANGUAGE Safe #-}
+{-# LANGUAGE Trustworthy #-}
 module Control.Monad.Channel (
   Channel,
   ChannelT,
diff --git a/src/Control/Monad/Channel/Internal.hs b/src/Control/Monad/Channel/Internal.hs
--- a/src/Control/Monad/Channel/Internal.hs
+++ b/src/Control/Monad/Channel/Internal.hs
@@ -1,6 +1,6 @@
 {-# LANGUAGE FunctionalDependencies, PolyKinds, FlexibleContexts #-}
 {-# LANGUAGE ExistentialQuantification, FlexibleInstances, UndecidableInstances #-}
-{-# LANGUAGE StandaloneDeriving, GeneralizedNewtypeDeriving, Trustworthy #-}
+{-# LANGUAGE StandaloneDeriving, GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE AutoDeriveTypeable, DeriveFunctor, DeriveGeneric #-}
 module Control.Monad.Channel.Internal (ChannelT(..), Channel, MonadChannel(..), ChannelF(..)) where
 import Control.Monad.Trans
