diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,9 @@
+1.0.2.2
+-------
+
+- GHC-8.6.1 compatible relase
+- Fix compilation when `+check-bounds`
+
 1.0.2.1
 -------
 
diff --git a/integer-logarithms.cabal b/integer-logarithms.cabal
--- a/integer-logarithms.cabal
+++ b/integer-logarithms.cabal
@@ -1,5 +1,5 @@
 name:               integer-logarithms
-version:            1.0.2.1
+version:            1.0.2.2
 cabal-version:      >= 1.10
 author:             Daniel Fischer
 copyright:          (c) 2011 Daniel Fischer
@@ -8,8 +8,8 @@
 maintainer:         Oleg Grenrus <oleg.grenrus@iki.fi>
 build-type:         Simple
 stability:          Provisional
-homepage:           https://github.com/phadej/integer-logarithms
-bug-reports:        https://github.com/phadej/integer-logarithms/issues
+homepage:           https://github.com/Bodigrim/integer-logarithms
+bug-reports:        https://github.com/Bodigrim/integer-logarithms/issues
 
 synopsis:           Integer logarithms.
 description:
@@ -22,7 +22,7 @@
 
 category:           Math, Algorithms, Number Theory
 
-tested-with         :
+tested-with:
   GHC==7.0.4,
   GHC==7.2.2,
   GHC==7.4.2,
@@ -31,7 +31,8 @@
   GHC==7.10.3,
   GHC==8.0.2,
   GHC==8.2.2,
-  GHC==8.4.1
+  GHC==8.4.3,
+  GHC==8.6.1
 
 extra-source-files  : readme.md changelog.md
 
@@ -49,7 +50,7 @@
   default-language: Haskell2010
   hs-source-dirs: src
   build-depends:
-    base >= 4.3 && < 4.12,
+    base >= 4.3 && < 4.13,
     array >= 0.3 && < 0.6,
     ghc-prim < 0.6
   if impl(ghc >= 7.10)
@@ -80,7 +81,7 @@
 
 source-repository head
   type:     git
-  location: https://github.com/phadej/integer-logarithms
+  location: https://github.com/Bodigrim/integer-logarithms
 
 test-suite spec
   type:                 exitcode-stdio-1.0
@@ -97,7 +98,7 @@
   build-depends:
     base,
     integer-logarithms,
-    tasty >= 0.10 && < 1.1,
+    tasty >= 0.10 && < 1.2,
     tasty-smallcheck >= 0.8 && < 0.9,
     tasty-quickcheck >= 0.8 && < 0.11,
     tasty-hunit >= 0.9 && < 0.11,
diff --git a/readme.md b/readme.md
--- a/readme.md
+++ b/readme.md
@@ -1,3 +1,5 @@
 # integer-logarithms
 
+[![Build Status](https://travis-ci.org/Bodigrim/integer-logarithms.svg?branch=master)](https://travis-ci.org/Bodigrim/integer-logarithms)
+
 `Math.NumberTheory.Logarithms` splitted out of [`arithmoi`](http://hackage.haskell.org/package/arithmoi)
diff --git a/src/Math/NumberTheory/Logarithms.hs b/src/Math/NumberTheory/Logarithms.hs
--- a/src/Math/NumberTheory/Logarithms.hs
+++ b/src/Math/NumberTheory/Logarithms.hs
@@ -302,7 +302,7 @@
 
 #if CheckBounds
 unsafeAt :: (IArray a e, Ix i) => a i e -> i -> e
-unsafeAt = (!)`
+unsafeAt = (!)
 #endif
 
 -------------------------------------------------------------------------------
