diff --git a/safe-coloured-text-terminfo.cabal b/safe-coloured-text-terminfo.cabal
--- a/safe-coloured-text-terminfo.cabal
+++ b/safe-coloured-text-terminfo.cabal
@@ -1,11 +1,11 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.7.
+-- This file has been generated from package.yaml by hpack version 0.35.2.
 --
 -- see: https://github.com/sol/hpack
 
 name:           safe-coloured-text-terminfo
-version:        0.1.0.0
+version:        0.2.0.0
 synopsis:       Safely output coloured text
 category:       User Interfaces
 homepage:       https://github.com/NorfairKing/safe-coloured-text#readme
diff --git a/src/Text/Colour/Term.hs b/src/Text/Colour/Term.hs
--- a/src/Text/Colour/Term.hs
+++ b/src/Text/Colour/Term.hs
@@ -18,11 +18,6 @@
 putChunksLocale :: [Chunk] -> IO ()
 putChunksLocale = hPutChunksLocale stdout
 
--- | Deprecated synonym of putChunksUtf8
-putChunks :: [Chunk] -> IO ()
-putChunks = putChunksUtf8
-{-# DEPRECATED putChunks "Use putChunksLocale, or putChunksUtf8 if you must." #-}
-
 -- | Print a list of chunks to the given 'Handle'
 --
 -- This function will use 'getTerminalCapabilitiesHandle' on the given handle.
@@ -40,8 +35,3 @@
 hPutChunksLocale h cs = do
   tc <- getTerminalCapabilitiesFromHandle h
   hPutChunksLocaleWith tc h cs
-
--- | Deprecated synonym of 'hPutChunksUtf8'
-hPutChunks :: Handle -> [Chunk] -> IO ()
-hPutChunks = hPutChunksUtf8
-{-# DEPRECATED hPutChunks "Use hPutChunksLocale, or hPutChunksUtf8 if you must." #-}
