diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,12 +1,10 @@
-# Change Log for [sext](https://github.com/dzhus/sext)
-
-### 0.1.3
+# 0.1.3.1
 
-#### Added
+- GHC 8.2.x support
 
-- `ShortByteString` support
+# 0.1.3
 
-#### Fixed
+- Added `ShortByteString` support
 
-- a bug in `createLeft` which failed to actually pad/truncate strings
-  (reported by Altai-man https://github.com/dzhus/sext/issues/4)
+- Fixed a bug in `createLeft` which failed to actually pad/truncate
+  strings (reported by Altai-man https://github.com/dzhus/sext/issues/4)
diff --git a/sext.cabal b/sext.cabal
--- a/sext.cabal
+++ b/sext.cabal
@@ -1,5 +1,5 @@
 name: sext
-version: 0.1.3
+version: 0.1.3.1
 cabal-version: >=1.10
 build-type: Simple
 license: BSD3
@@ -45,7 +45,7 @@
     
     if flag(vector)
         build-depends:
-            vector <0.12
+            vector <0.13
         cpp-options: -DWITH_VECTOR
     exposed-modules:
         Data.Sext
@@ -53,21 +53,21 @@
         Data.Sext.TH
     build-depends:
         base <5,
-        template-haskell <2.12
+        template-haskell <2.13
     default-language: Haskell2010
     hs-source-dirs: src
     other-modules:
         Paths_sext
-    ghc-options: -Wall -Wall
+    ghc-options: -Wall
 
-test-suite sext-example
+test-suite  sext-example
     type: exitcode-stdio-1.0
     main-is: Main.hs
     build-depends:
         base <5,
-        template-haskell <2.12,
+        template-haskell <2.13,
         bytestring <0.11,
-        sext <0.2,
+        sext -any,
         tasty <0.12,
         tasty-hunit <0.10
     default-language: Haskell2010
diff --git a/src/Data/Sext.hs b/src/Data/Sext.hs
--- a/src/Data/Sext.hs
+++ b/src/Data/Sext.hs
@@ -2,7 +2,6 @@
 {-# LANGUAGE DataKinds #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE InstanceSigs #-}
-{-# LANGUAGE OverloadedStrings #-}
 {-# LANGUAGE ScopedTypeVariables #-}
 {-# LANGUAGE TypeFamilies #-}
 {-# LANGUAGE TypeOperators #-}
