Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Revision history for glean

## 0.2.0.0

* Added `glean-lsp`, a multi-language LSP server based on Glean
* Added a new Haskell indexer which consumes `.hie` files directly and
collects much richer data than the old indexer.

## 0.1.0.0 -- YYYY-mm-dd

* First version. Released on an unsuspecting world.
3 changes: 2 additions & 1 deletion glean.cabal.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cabal-version: 3.6
-- Copyright (c) Facebook, Inc. and its affiliates.

name: glean
version: 0.1.0.0
version: 0.2.0.0
synopsis: A system for collecting, deriving and working with facts
about source code.
homepage: https://github.com/facebookincubator/Glean
Expand Down Expand Up @@ -1068,6 +1068,7 @@ executable disassemble
glean:if-glean-hs,
glean:lib,
glean:util,
glean:angle,

library test-unit
import: fb-haskell, fb-cpp, deps
Expand Down
2 changes: 1 addition & 1 deletion glean/lsp/glean-lsp.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ executable glean-lsp
unliftio-core ^>=0.2,
unordered-containers >= 0.2.9.0 && < 0.3,
optparse-applicative >= 0.17 && < 0.19,
glean:glass-lib,
glean:glass-lib >= 0.2 && < 0.3,
glean:if-glass-hs,
glean:util,
fb-util,
Expand Down
Loading