Skip to content

Commit 4bddc15

Browse files
committed
Prepare ghcide release v1.3.0.0
1 parent 50ee7fa commit 4bddc15

File tree

18 files changed

+36
-24
lines changed

18 files changed

+36
-24
lines changed

ghcide/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
### 1.3.0.0 (2021-05-09)
2+
* Replace unsafe getmodtime with unix package (#1778) - Pepe Iborra
3+
* Progress reporting improvements (#1784) - Pepe Iborra
4+
* Unify session loading using implicit-hie (#1783) - fendor
5+
* Fix remove constraint (#1578) - Kostas Dermentzis
6+
* Fix wrong extend import while type constuctor and data constructor have the same name (#1775) - Lei Zhu
7+
* Imporve vscode extension schema generation (#1742) - Potato Hatsue
8+
* Add hls-graph abstracting over shake (#1748) - Neil Mitchell
9+
* Tease apart the custom SYB from ExactPrint (#1746) - Sandy Maguire
10+
* fix class method completion (#1741) - Lei Zhu
11+
* Fix: #1690 - Infix typed holes are now filled using infix notation (#1708) - Oliver Madine
12+
113
### 1.2.0.2 (2021-04-13)
214
* Bracketing for snippet completions (#1709) - Oliver Madine
315
* Don't suggest destruct actions for already-destructed terms (#1715) - Sandy Maguire

ghcide/bench/config.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ versions:
8080
# - 1.0.0
8181
# - ghcide-v1.1.0
8282
# - ghcide-v1.2.0
83+
# - ghcide-v1.3.0
8384
- upstream: origin/master
8485
- HEAD
8586

ghcide/ghcide.cabal

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 2.4
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 1.2.0.2
5+
version: 1.3.0.0
66
license: Apache-2.0
77
license-file: LICENSE
88
author: Digital Asset and Ghcide contributors
@@ -67,14 +67,13 @@ library
6767
optparse-applicative,
6868
parallel,
6969
prettyprinter-ansi-terminal,
70-
prettyprinter-ansi-terminal,
7170
prettyprinter,
7271
regex-tdfa >= 1.3.1.0,
7372
retrie,
7473
rope-utf16-splay,
7574
safe,
7675
safe-exceptions,
77-
hls-graph,
76+
hls-graph ^>= 1.3,
7877
sorted-list,
7978
sqlite-simple,
8079
stm,

haskell-language-server.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
category: Development
33
name: haskell-language-server
4-
version: 1.1.0.0
4+
version: 1.1.0.1
55
synopsis: LSP server for GHC
66
description:
77
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -62,7 +62,7 @@ library
6262
, cryptohash-sha1
6363
, data-default
6464
, ghc
65-
, ghcide ^>=1.2
65+
, ghcide ^>=1.3
6666
, gitrev
6767
, lsp
6868
, hie-bios

hls-graph/hls-graph.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-graph
3-
version: 1.1.0.0
3+
version: 1.3.0.0
44
synopsis: Haskell Language Server internal graph API
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>

hls-plugin-api/hls-plugin-api.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-plugin-api
3-
version: 1.1.0.0
3+
version: 1.1.0.1
44
synopsis: Haskell Language Server API for plugin communication
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -50,7 +50,7 @@ library
5050
, opentelemetry
5151
, process
5252
, regex-tdfa >=1.3.1.0
53-
, hls-graph
53+
, hls-graph ^>=1.3
5454
, text
5555
, unordered-containers
5656

hls-test-utils/hls-test-utils.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: hls-test-utils
3-
version: 1.0.0.0
3+
version: 1.0.0.1
44
synopsis: Utilities used in the tests of Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
@@ -41,7 +41,7 @@ library
4141
, directory
4242
, extra
4343
, filepath
44-
, ghcide ^>=1.2
44+
, ghcide >=1.3 && <1.4
4545
, hls-graph
4646
, hls-plugin-api ^>=1.1
4747
, hspec

plugins/hls-brittany-plugin/hls-brittany-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ library
2525
, filepath
2626
, ghc
2727
, ghc-boot-th
28-
, ghcide ^>=1.2
28+
, ghcide >=1.2 && <1.4
2929
, hls-plugin-api ^>=1.1
3030
, lens
3131
, lsp-types

plugins/hls-class-plugin/hls-class-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2
32+
, ghcide >=1.2 && <1.4
3333
, hls-plugin-api ^>=1.1
3434
, lens
3535
, lsp

plugins/hls-eval-plugin/hls-eval-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ library
6161
, ghc
6262
, ghc-boot-th
6363
, ghc-paths
64-
, ghcide ^>=1.2
64+
, ghcide >=1.2 && <1.4
6565
, hashable
6666
, hls-plugin-api ^>=1.1
6767
, lens

plugins/hls-explicit-imports-plugin/hls-explicit-imports-plugin.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-explicit-imports-plugin
3-
version: 1.0.0.1
3+
version: 1.0.0.2
44
synopsis: Explicit imports plugin for Haskell Language Server
55
license: Apache-2.0
66
license-file: LICENSE
@@ -20,7 +20,7 @@ library
2020
, containers
2121
, deepseq
2222
, ghc
23-
, ghcide ^>=1.2
23+
, ghcide ^>=1.3
2424
, hls-plugin-api ^>=1.1
2525
, lsp
2626
, lsp-types

plugins/hls-haddock-comments-plugin/hls-haddock-comments-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ library
2929
, containers
3030
, ghc
3131
, ghc-exactprint
32-
, ghcide ^>=1.2
32+
, ghcide >=1.2 && <1.4
3333
, hls-plugin-api ^>=1.1
3434
, lsp-types
3535
, text

plugins/hls-hlint-plugin/hls-hlint-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ library
4141
, extra
4242
, filepath
4343
, ghc-exactprint >=0.6.3.4
44-
, ghcide ^>=1.2
44+
, ghcide >=1.2 && <1.4
4545
, hashable
4646
, hlint ^>=3.2
4747
, hls-plugin-api ^>=1.1

plugins/hls-refine-imports-plugin/hls-refine-imports-plugin.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ extra-source-files:
1414
library
1515
exposed-modules: Ide.Plugin.RefineImports
1616
hs-source-dirs: src
17-
build-depends:
17+
build-depends:
1818
, aeson
1919
, base >=4.12 && <5
2020
, containers
2121
, deepseq
2222
, ghc
23-
, ghcide ^>=1.2
23+
, ghcide ^>=1.3
2424
, hls-plugin-api ^>=1.1
2525
, lsp
2626
, lsp-types

plugins/hls-retrie-plugin/hls-retrie-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ library
2222
, directory
2323
, extra
2424
, ghc
25-
, ghcide ^>=1.2
25+
, ghcide >=1.2 && <1.4
2626
, hashable
2727
, hls-plugin-api ^>=1.1
2828
, lsp

plugins/hls-splice-plugin/hls-splice-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ library
4040
, foldl
4141
, ghc
4242
, ghc-exactprint
43-
, ghcide ^>=1.2
43+
, ghcide >=1.2 && <1.4
4444
, hls-plugin-api ^>=1.1
4545
, lens
4646
, lsp

plugins/hls-stylish-haskell-plugin/hls-stylish-haskell-plugin.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ library
2222
, filepath
2323
, ghc
2424
, ghc-boot-th
25-
, ghcide ^>=1.2
25+
, ghcide >=1.2 && <1.4
2626
, hls-plugin-api ^>=1.1
2727
, lsp-types
2828
, mtl

plugins/hls-tactics-plugin/hls-tactics-plugin.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.4
22
category: Development
33
name: hls-tactics-plugin
4-
version: 1.1.0.0
4+
version: 1.1.0.1
55
synopsis: Wingman plugin for Haskell Language Server
66
description: Please see README.md
77
author: Sandy Maguire, Reed Mullanix
@@ -73,7 +73,7 @@ library
7373
, ghc-boot-th
7474
, ghc-exactprint
7575
, ghc-source-gen
76-
, ghcide ^>=1.2
76+
, ghcide ^>=1.3
7777
, hls-plugin-api ^>=1.1
7878
, lens
7979
, lsp

0 commit comments

Comments
 (0)