diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## 0.0.9.0
+
+* Add `instance Handle IOE`
+
+* Add `rethrowIO`
+
 ## 0.0.8.0
 
 Add `Bluefin.Consume` and `consumeStream`
diff --git a/bluefin.cabal b/bluefin.cabal
--- a/bluefin.cabal
+++ b/bluefin.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               bluefin
-version:            0.0.8.0
+version:            0.0.9.0
 license:            MIT
 license-file:       LICENSE
 author:             Tom Ellis
diff --git a/src/Bluefin/Exception.hs b/src/Bluefin/Exception.hs
--- a/src/Bluefin/Exception.hs
+++ b/src/Bluefin/Exception.hs
@@ -7,6 +7,7 @@
     catch,
     -- * Effectful operations
     throw,
+    rethrowIO,
   )
 where
 
diff --git a/src/Bluefin/IO.hs b/src/Bluefin/IO.hs
--- a/src/Bluefin/IO.hs
+++ b/src/Bluefin/IO.hs
@@ -7,6 +7,7 @@
     runEff,
     -- * Effectful operations
     effIO,
+    rethrowIO,
     -- * IO type classes
     withMonadIO,
     withEffToIO,
