diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,15 @@
 # Revision history for ghctags
 
+## 0.5.1.0
+
+- tags for local bindings (from `where` clauses)
+- tags for modules
+
+## 0.5.0.0
+
+- tags of instance methods & signatures
+- fixed a case in which generated ctags where missing headers
+
 ## 0.4.0.2
 
 * Fixed a bug: no headers for ctag file when `--stream` option was not set.
diff --git a/ghc-tags-plugin.cabal b/ghc-tags-plugin.cabal
--- a/ghc-tags-plugin.cabal
+++ b/ghc-tags-plugin.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                ghc-tags-plugin
-version:             0.5.0.0
+version:             0.5.1.0
 synopsis:            A compiler plugin which generates tags file from GHC parsed syntax tree.
 description:
   A [GHC compiler plugin](https://ghc.gitlab.haskell.org/ghc/doc/users_guide/extending_ghc.html?highlight=compiler%20plugin#compiler-plugins)
diff --git a/lib/Plugin/GhcTags/CTag.hs b/lib/Plugin/GhcTags/CTag.hs
--- a/lib/Plugin/GhcTags/CTag.hs
+++ b/lib/Plugin/GhcTags/CTag.hs
@@ -26,6 +26,7 @@
     , Header FieldDescription haskellLang "instance" "class, type or data type instance"
     , Header FieldDescription haskellLang "Kind" "kind of a type"
 
+    , Header KindDescription haskellLang "M" "module name"
     , Header KindDescription haskellLang "`" "module top level term, but not a function"
     , Header KindDescription haskellLang "λ" "module top level function term"
     , Header KindDescription haskellLang "Λ" "type constructor"
@@ -38,6 +39,7 @@
     , Header KindDescription haskellLang "C" "type class"
     , Header KindDescription haskellLang "m" "type class member"
     , Header KindDescription haskellLang "i" "type class instance"
+    , Header KindDescription haskellLang "x" "type class instance member"
     , Header KindDescription haskellLang "F" "type family"
     , Header KindDescription haskellLang "f" "type family instance"
     , Header KindDescription haskellLang "D" "data type family"
