Skip to content

Commit f96afb9

Browse files
committed
Bump versions to 1.0.0.0
1 parent 89cf7d8 commit f96afb9

File tree

12 files changed

+48
-48
lines changed

12 files changed

+48
-48
lines changed

ghcide/ghcide.cabal

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
cabal-version: 1.20
1+
cabal-version: 2.2
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 0.7.5.0
5+
version: 1.0.0.0
66
license: Apache-2.0
77
license-file: LICENSE
88
author: Digital Asset and Ghcide contributors
@@ -57,8 +57,8 @@ library
5757
Glob,
5858
haddock-library >= 1.8,
5959
hashable,
60-
hie-compat,
61-
hls-plugin-api >= 0.7.1,
60+
hie-compat ^>= 1.0.0.0,
61+
hls-plugin-api ^>= 1.0.0.0,
6262
lens,
6363
hiedb == 0.3.0.1,
6464
lsp-types == 1.1.*,

haskell-language-server.cabal

+11-11
Original file line numberDiff line numberDiff line change
@@ -64,12 +64,12 @@ library
6464
, cryptohash-sha1
6565
, data-default
6666
, ghc
67-
, ghcide >=0.7.5
67+
, ghcide ^>= 1.0.0.0
6868
, gitrev
6969
, lsp
7070
, hie-bios
7171
, hiedb
72-
, hls-plugin-api >=0.7.1
72+
, hls-plugin-api ^>= 1.0.0.0
7373
, hslogger
7474
, optparse-applicative
7575
, optparse-simple
@@ -187,37 +187,37 @@ common example-plugins
187187

188188
common class
189189
if flag(class) || flag(all-plugins)
190-
build-depends: hls-class-plugin >=0.1.0.2
190+
build-depends: hls-class-plugin ^>= 1.0.0.0
191191
cpp-options: -Dclass
192192

193193
common haddockComments
194194
if flag(haddockComments) || flag(all-plugins)
195-
build-depends: hls-haddock-comments-plugin >=0.1.1.1
195+
build-depends: hls-haddock-comments-plugin ^>= 1.0.0.0
196196
cpp-options: -DhaddockComments
197197

198198
common eval
199199
if flag(eval) || flag(all-plugins)
200-
build-depends: hls-eval-plugin >=0.2.0.1
200+
build-depends: hls-eval-plugin ^>= 1.0.0.0
201201
cpp-options: -Deval
202202

203203
common importLens
204204
if flag(importLens) || flag(all-plugins)
205-
build-depends: hls-explicit-imports-plugin >=0.1.0.2
205+
build-depends: hls-explicit-imports-plugin ^>= 1.0.0.0
206206
cpp-options: -DimportLens
207207

208208
common retrie
209209
if flag(retrie) || flag(all-plugins)
210-
build-depends: hls-retrie-plugin >=0.1.1.1
210+
build-depends: hls-retrie-plugin ^>= 1.0.0.0
211211
cpp-options: -Dretrie
212212

213213
common tactic
214214
if flag(tactic) || flag(all-plugins)
215-
build-depends: hls-tactics-plugin >=0.5.1.1
215+
build-depends: hls-tactics-plugin ^>= 1.0.0.0
216216
cpp-options: -Dtactic
217217

218218
common hlint
219219
if flag(hlint) || flag(all-plugins)
220-
build-depends: hls-hlint-plugin >=0.2.0.1
220+
build-depends: hls-hlint-plugin ^>= 1.0.0.0
221221
cpp-options: -Dhlint
222222

223223
common moduleName
@@ -235,7 +235,7 @@ common pragmas
235235

236236
common splice
237237
if flag(splice) || flag(all-plugins)
238-
build-depends: hls-splice-plugin >= 0.4.0.1
238+
build-depends: hls-splice-plugin ^>= 1.0.0.0
239239
cpp-options: -Dsplice
240240

241241
-- formatters
@@ -392,7 +392,7 @@ common hls-test-utils
392392
, data-default
393393
, lsp
394394
, hie-bios
395-
, hls-plugin-api >=0.6
395+
, hls-plugin-api ^>= 1.0.0.0
396396
, hslogger
397397
, hspec
398398
, hspec-core

hie-compat/hie-compat.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 1.22
22
name: hie-compat
3-
version: 0.1.0.0
3+
version: 1.0.0.0
44
synopsis: HIE files for GHC 8.6 and other HIE file backports
55
license: Apache-2.0
66
description:

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-plugin-api
3-
version: 0.7.1.0
3+
version: 1.0.0.0
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>

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-class-plugin
3-
version: 0.1.0.2
3+
version: 1.0.0.0
44
synopsis: Class/instance management plugin for Haskell Language Server
55
description:
66
Class/instance management plugin for Haskell Language Server.
@@ -18,13 +18,13 @@ library
1818
exposed-modules: Ide.Plugin.Class
1919
hs-source-dirs: src
2020
build-depends: aeson
21-
, base >=4.12 && <5
21+
, base >=4.12 && <5
2222
, containers
2323
, lsp
24-
, hls-plugin-api
24+
, hls-plugin-api ^>= 1.0.0.0
2525
, ghc
2626
, ghc-exactprint
27-
, ghcide
27+
, ghcide ^>= 1.0.0.0
2828
, lens
2929
, shake
3030
, text

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-eval-plugin
3-
version: 0.2.0.1
3+
version: 1.0.0.0
44
synopsis: Eval plugin for Haskell Language Server
55
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
66
category: Development
@@ -49,11 +49,11 @@ library
4949
, ghc
5050
, ghc-boot-th
5151
, ghc-paths
52-
, ghcide >=0.7.3.0
52+
, ghcide ^>= 1.0.0.0
5353
, hashable
5454
, lsp
5555
, lsp-types
56-
, hls-plugin-api >=0.7
56+
, hls-plugin-api ^>= 1.0.0.0
5757
, lens
5858
, megaparsec >=0.9
5959
, mtl

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

+4-4
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: 0.1.0.2
3+
version: 1.0.0.0
44
synopsis: Explicit imports plugin for Haskell Language Server
55
license: Apache-2.0
66
license-file: LICENSE
@@ -16,14 +16,14 @@ library
1616
exposed-modules: Ide.Plugin.ExplicitImports
1717
hs-source-dirs: src
1818
build-depends: aeson
19-
, base >=4.12 && <5
19+
, base >=4.12 && <5
2020
, containers
2121
, deepseq
2222
, lsp-types
2323
, lsp
24-
, hls-plugin-api
24+
, hls-plugin-api ^>= 1.0.0.0
2525
, ghc
26-
, ghcide >= 0.7.4
26+
, ghcide ^>= 1.0.0.0
2727
, shake
2828
, text
2929
, unordered-containers

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-haddock-comments-plugin
3-
version: 0.1.1.1
3+
version: 1.0.0.0
44
synopsis: Haddock comments plugin for Haskell Language Server
55
description:
66
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server>
@@ -23,9 +23,9 @@ library
2323
, containers
2424
, ghc
2525
, ghc-exactprint
26-
, ghcide
26+
, ghcide ^>= 1.0.0.0
2727
, lsp-types
28-
, hls-plugin-api
28+
, hls-plugin-api ^>= 1.0.0.0
2929
, text
3030
, unordered-containers
3131

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-hlint-plugin
3-
version: 0.2.0.1
3+
version: 1.0.0.0
44
synopsis: Hlint integration plugin with Haskell Language Server
55
description: Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)
66
license: Apache-2.0
@@ -27,8 +27,8 @@ library
2727
hs-source-dirs: src
2828
build-depends:
2929
, aeson
30-
, apply-refact >=0.9
31-
, base >=4.12 && <5
30+
, apply-refact >=0.9
31+
, base >=4.12 && <5
3232
, binary
3333
, bytestring
3434
, containers
@@ -39,11 +39,11 @@ library
3939
, extra
4040
, filepath
4141
, ghc-exactprint >=0.6.3.4
42-
, ghcide >=0.7.2.0
42+
, ghcide ^>= 1.0.0.0
4343
, hashable
4444
, lsp
4545
, hlint >=3.2
46-
, hls-plugin-api >=0.7.1.0
46+
, hls-plugin-api ^>= 1.0.0.0
4747
, hslogger
4848
, lens
4949
, regex-tdfa

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-retrie-plugin
3-
version: 0.1.1.1
3+
version: 1.0.0.0
44
synopsis: Retrie integration plugin for Haskell Language Server
55
license: Apache-2.0
66
license-file: LICENSE
@@ -16,18 +16,18 @@ library
1616
exposed-modules: Ide.Plugin.Retrie
1717
hs-source-dirs: src
1818
build-depends: aeson
19-
, base >=4.12 && <5
19+
, base >=4.12 && <5
2020
, containers
2121
, deepseq
2222
, directory
2323
, extra
2424
, lsp
2525
, lsp-types
26-
, hls-plugin-api
26+
, hls-plugin-api ^>= 1.0.0.0
2727
, ghc
28-
, ghcide
28+
, ghcide ^>= 1.0.0.0
2929
, hashable
30-
, retrie >=0.1.1.0
30+
, retrie >=0.1.1.0
3131
, safe-exceptions
3232
, shake
3333
, text

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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.2
22
name: hls-splice-plugin
3-
version: 0.4.0.1
3+
version: 1.0.0.0
44
synopsis: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes
55
description: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes.
66
license: Apache-2.0
@@ -16,15 +16,15 @@ library
1616
other-modules: Ide.Plugin.Splice.Types
1717
hs-source-dirs: src
1818
build-depends: aeson
19-
, base >=4.12 && <5
19+
, base >=4.12 && <5
2020
, containers
2121
, extra
2222
, foldl
2323
, lsp
24-
, hls-plugin-api
24+
, hls-plugin-api ^>= 1.0.0.0
2525
, ghc
2626
, ghc-exactprint
27-
, ghcide >= 0.7.3
27+
, ghcide ^>= 1.0.0.0
2828
, lens
2929
, dlist
3030
, retrie

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 2.2
22
category: Development
33
name: hls-tactics-plugin
4-
version: 0.5.1.1
4+
version: 1.0.0.0
55
synopsis: Tactics plugin for Haskell Language Server
66
description: Please see README.md
77
author: Sandy Maguire, Reed Mullanix
@@ -62,9 +62,9 @@ library
6262
, ghc-boot-th
6363
, ghc-exactprint
6464
, ghc-source-gen
65-
, ghcide >=0.1
65+
, ghcide ^>= 1.0.0.0
6666
, lsp
67-
, hls-plugin-api
67+
, hls-plugin-api ^>= 1.0.0.0
6868
, lens
6969
, mtl
7070
, refinery ^>=0.3

0 commit comments

Comments
 (0)