diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+- 0.2.7.0 (2018-04-30)
+    * Export unsafe operations
+
 - 0.2.6.0 (2018-03-14)
     * Fix issue with (<>) on 8.4
     * Bump QuickCheck dependency to 2.11
diff --git a/psqueues.cabal b/psqueues.cabal
--- a/psqueues.cabal
+++ b/psqueues.cabal
@@ -1,5 +1,5 @@
 Name:          psqueues
-Version:       0.2.6.0
+Version:       0.2.7.0
 License:       BSD3
 License-file:  LICENSE
 Maintainer:    Jasper Van der Jeugt <jaspervdj@gmail.com>
diff --git a/src/Data/HashPSQ.hs b/src/Data/HashPSQ.hs
--- a/src/Data/HashPSQ.hs
+++ b/src/Data/HashPSQ.hs
@@ -44,6 +44,11 @@
     , unsafeMapMonotonic
     , fold'
 
+      -- * Unsafe operations
+    , unsafeLookupIncreasePriority
+    , unsafeInsertIncreasePriority
+    , unsafeInsertIncreasePriorityView
+
       -- * Validity check
     , valid
     ) where
diff --git a/src/Data/IntPSQ.hs b/src/Data/IntPSQ.hs
--- a/src/Data/IntPSQ.hs
+++ b/src/Data/IntPSQ.hs
@@ -47,6 +47,14 @@
     , unsafeMapMonotonic
     , fold'
 
+      -- * Unsafe operations
+    , unsafeInsertNew
+    , unsafeInsertIncreasePriority
+    , unsafeInsertIncreasePriorityView
+    , unsafeInsertWithIncreasePriority
+    , unsafeInsertWithIncreasePriorityView
+    , unsafeLookupIncreasePriority
+
       -- * Validity check
     , valid
     ) where
diff --git a/src/Data/IntPSQ/Internal.hs b/src/Data/IntPSQ/Internal.hs
--- a/src/Data/IntPSQ/Internal.hs
+++ b/src/Data/IntPSQ/Internal.hs
@@ -529,9 +529,6 @@
 -- Improved insert performance for special cases
 ------------------------------------------------------------------------------
 
--- TODO (SM): Make benchmarks run again, integrate this function with insert
--- and test how benchmarks times change.
-
 -- | Internal function to insert a key with priority larger than the
 -- maximal priority in the heap. This is always the case when using the PSQ
 -- as the basis to implement a LRU cache, which associates a
