packages feed

ghc-tags-plugin 0.5.0.0 → 0.5.1.0

raw patch · 3 files changed

+13/−1 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -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.
ghc-tags-plugin.cabal view
@@ -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)
lib/Plugin/GhcTags/CTag.hs view
@@ -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"