diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,10 @@
 `hakyll-shortcut-links` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.1.0.1 — Jan 12, 2021
+
+* Support GHC-8.10.3.
+
 ## 0.1.0.0 — Feb 29, 2020
 
 * [#16](https://github.com/kowainik/hakyll-shortcut-links/issues/16):
diff --git a/hakyll-shortcut-links.cabal b/hakyll-shortcut-links.cabal
--- a/hakyll-shortcut-links.cabal
+++ b/hakyll-shortcut-links.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                hakyll-shortcut-links
-version:             0.1.0.0
+version:             0.1.0.1
 synopsis:            Use shortcut-links in markdown file for Hakyll
 description:         Use shortcut-links in markdown file for Hakyll. See README for more details.
 homepage:            https://github.com/kowainik/hakyll-shortcut-links
@@ -9,19 +9,20 @@
 license-file:        LICENSE
 author:              Veronika Romashkina, Dmitrii Kovanikov
 maintainer:          Kowainik <xrom.xkov@gmail.com>
-copyright:           2019-2020 Kowainik
+copyright:           2019-2021 Kowainik
 category:            Web, Hakyll, Markdown
 build-type:          Simple
 extra-doc-files:     README.md
                      CHANGELOG.md
-tested-with:         GHC == 8.8.2
+tested-with:         GHC == 8.8.4
+                     GHC == 8.10.3
 
 source-repository head
   type:                git
   location:            https://github.com/kowainik/hakyll-shortcut-links.git
 
 common common-options
-  build-depends:       base >= 4.13.0.0 && < 4.14
+  build-depends:       base >= 4.13.0.0 && < 4.15
   ghc-options:         -Wall
                        -Wcompat
                        -Widentities
@@ -37,6 +38,10 @@
   if impl(ghc >= 8.8)
     ghc-options:       -Wmissing-deriving-strategies
                        -Werror=missing-deriving-strategies
+                       -fwrite-ide-info
+                       -hiedir=../.hie
+  if impl(ghc >= 8.10)
+    ghc-options:       -Wunused-packages
 
   default-extensions:  ConstraintKinds
                        DeriveGeneric
@@ -64,7 +69,7 @@
 
   build-depends:       hakyll ^>= 4.13
                      , mtl ^>= 2.2.2
-                     , pandoc-types ^>= 1.20
+                     , pandoc-types >= 1.20 && < 1.23
                      , parsec ^>= 3.1.14
                      , shortcut-links ^>= 0.5.0.0
                      , text ^>= 1.2
@@ -80,7 +85,7 @@
   build-depends:       hakyll-shortcut-links
                      , hspec ^>= 2.7.1
                      , mtl
-                     , pandoc ^>= 2.9
+                     , pandoc >= 2.9 && < 2.12
                      , text
 
   ghc-options:         -threaded
diff --git a/src/Hakyll/ShortcutLinks.hs b/src/Hakyll/ShortcutLinks.hs
--- a/src/Hakyll/ShortcutLinks.hs
+++ b/src/Hakyll/ShortcutLinks.hs
@@ -1,7 +1,7 @@
 {-# LANGUAGE FlexibleContexts #-}
 
 {- |
-Copyright:  (c) 2019-2020 Kowainik
+Copyright:  (c) 2019-2021 Kowainik
 License:    MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
diff --git a/src/Hakyll/ShortcutLinks/Parser.hs b/src/Hakyll/ShortcutLinks/Parser.hs
--- a/src/Hakyll/ShortcutLinks/Parser.hs
+++ b/src/Hakyll/ShortcutLinks/Parser.hs
@@ -1,5 +1,5 @@
 {- |
-Copyright:  (c) 2019-2020 Kowainik
+Copyright:  (c) 2019-2021 Kowainik
 License:    MPL-2.0
 Maintainer: Kowainik <xrom.xkov@gmail.com>
 
