Skip to content

Commit

Permalink
Bump versions to 1.0.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ailrun committed Feb 22, 2021
1 parent 23191fb commit 233c18c
Show file tree
Hide file tree
Showing 12 changed files with 47 additions and 47 deletions.
6 changes: 3 additions & 3 deletions ghcide/ghcide.cabal
Expand Up @@ -2,7 +2,7 @@ cabal-version: 1.20
build-type: Simple
category: Development
name: ghcide
version: 0.7.5.0
version: 1.0.0.0
license: Apache-2.0
license-file: LICENSE
author: Digital Asset and Ghcide contributors
Expand Down Expand Up @@ -57,8 +57,8 @@ library
Glob,
haddock-library >= 1.8,
hashable,
hie-compat,
hls-plugin-api >= 0.7.1,
hie-compat ^>= 1.0.0.0,
hls-plugin-api ^>= 1.0.0.0,
lens,
hiedb == 0.3.0.1,
lsp-types == 1.1.*,
Expand Down
22 changes: 11 additions & 11 deletions haskell-language-server.cabal
Expand Up @@ -64,12 +64,12 @@ library
, cryptohash-sha1
, data-default
, ghc
, ghcide >=0.7.5
, ghcide ^>= 1.0.0.0
, gitrev
, lsp
, hie-bios
, hiedb
, hls-plugin-api >=0.7.1
, hls-plugin-api ^>= 1.0.0.0
, hslogger
, optparse-applicative
, optparse-simple
Expand Down Expand Up @@ -187,37 +187,37 @@ common example-plugins

common class
if flag(class) || flag(all-plugins)
build-depends: hls-class-plugin >=0.1.0.2
build-depends: hls-class-plugin ^>= 1.0.0.0
cpp-options: -Dclass

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

common eval
if flag(eval) || flag(all-plugins)
build-depends: hls-eval-plugin >=0.2.0.1
build-depends: hls-eval-plugin ^>= 1.0.0.0
cpp-options: -Deval

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

common retrie
if flag(retrie) || flag(all-plugins)
build-depends: hls-retrie-plugin >=0.1.1.1
build-depends: hls-retrie-plugin ^>= 1.0.0.0
cpp-options: -Dretrie

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

common hlint
if flag(hlint) || flag(all-plugins)
build-depends: hls-hlint-plugin >=0.2.0.1
build-depends: hls-hlint-plugin ^>= 1.0.0.0
cpp-options: -Dhlint

common moduleName
Expand All @@ -235,7 +235,7 @@ common pragmas

common splice
if flag(splice) || flag(all-plugins)
build-depends: hls-splice-plugin >= 0.4.0.1
build-depends: hls-splice-plugin ^>= 1.0.0.0
cpp-options: -Dsplice

-- formatters
Expand Down Expand Up @@ -392,7 +392,7 @@ common hls-test-utils
, data-default
, lsp
, hie-bios
, hls-plugin-api >=0.6
, hls-plugin-api ^>= 1.0.0.0
, hslogger
, hspec
, hspec-core
Expand Down
2 changes: 1 addition & 1 deletion hie-compat/hie-compat.cabal
@@ -1,6 +1,6 @@
cabal-version: 1.22
name: hie-compat
version: 0.1.0.0
version: 1.0.0.0
synopsis: HIE files for GHC 8.6 and other HIE file backports
license: Apache-2.0
description:
Expand Down
2 changes: 1 addition & 1 deletion hls-plugin-api/hls-plugin-api.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-plugin-api
version: 0.7.1.0
version: 1.0.0.0
synopsis: Haskell Language Server API for plugin communication
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
Expand Down
8 changes: 4 additions & 4 deletions plugins/hls-class-plugin/hls-class-plugin.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-class-plugin
version: 0.1.0.2
version: 1.0.0.0
synopsis: Class/instance management plugin for Haskell Language Server
description:
Class/instance management plugin for Haskell Language Server.
Expand All @@ -18,13 +18,13 @@ library
exposed-modules: Ide.Plugin.Class
hs-source-dirs: src
build-depends: aeson
, base >=4.12 && <5
, base >=4.12 && <5
, containers
, lsp
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, ghc
, ghc-exactprint
, ghcide
, ghcide ^>= 1.0.0.0
, lens
, shake
, text
Expand Down
6 changes: 3 additions & 3 deletions plugins/hls-eval-plugin/hls-eval-plugin.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-eval-plugin
version: 0.2.0.1
version: 1.0.0.0
synopsis: Eval plugin for Haskell Language Server
description: Please see the README on GitHub at <https://github.com/haskell/haskell-language-server#readme>
category: Development
Expand Down Expand Up @@ -49,11 +49,11 @@ library
, ghc
, ghc-boot-th
, ghc-paths
, ghcide >=0.7.3.0
, ghcide ^>= 1.0.0.0
, hashable
, lsp
, lsp-types
, hls-plugin-api >=0.7
, hls-plugin-api ^>= 1.0.0.0
, lens
, megaparsec >=0.9
, mtl
Expand Down
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-explicit-imports-plugin
version: 0.1.0.2
version: 1.0.0.0
synopsis: Explicit imports plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
Expand All @@ -16,14 +16,14 @@ library
exposed-modules: Ide.Plugin.ExplicitImports
hs-source-dirs: src
build-depends: aeson
, base >=4.12 && <5
, base >=4.12 && <5
, containers
, deepseq
, lsp-types
, lsp
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, ghc
, ghcide >= 0.7.4
, ghcide ^>= 1.0.0.0
, shake
, text
, unordered-containers
Expand Down
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-haddock-comments-plugin
version: 0.1.1.1
version: 1.0.0.0
synopsis: Haddock comments plugin for Haskell Language Server
description:
Please see the README on GitHub at <https://github.com/haskell/haskell-language-server>
Expand All @@ -23,9 +23,9 @@ library
, containers
, ghc
, ghc-exactprint
, ghcide
, ghcide ^>= 1.0.0.0
, lsp-types
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, text
, unordered-containers

Expand Down
10 changes: 5 additions & 5 deletions plugins/hls-hlint-plugin/hls-hlint-plugin.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-hlint-plugin
version: 0.2.0.1
version: 1.0.0.0
synopsis: Hlint integration plugin with Haskell Language Server
description: Please see Haskell Language Server Readme (https://github.com/haskell/haskell-language-server#readme)
license: Apache-2.0
Expand All @@ -27,8 +27,8 @@ library
hs-source-dirs: src
build-depends:
, aeson
, apply-refact >=0.9
, base >=4.12 && <5
, apply-refact >=0.9
, base >=4.12 && <5
, binary
, bytestring
, containers
Expand All @@ -39,11 +39,11 @@ library
, extra
, filepath
, ghc-exactprint >=0.6.3.4
, ghcide >=0.7.2.0
, ghcide ^>= 1.0.0.0
, hashable
, lsp
, hlint >=3.2
, hls-plugin-api >=0.7.1.0
, hls-plugin-api ^>= 1.0.0.0
, hslogger
, lens
, regex-tdfa
Expand Down
10 changes: 5 additions & 5 deletions plugins/hls-retrie-plugin/hls-retrie-plugin.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-retrie-plugin
version: 0.1.1.1
version: 1.0.0.0
synopsis: Retrie integration plugin for Haskell Language Server
license: Apache-2.0
license-file: LICENSE
Expand All @@ -16,18 +16,18 @@ library
exposed-modules: Ide.Plugin.Retrie
hs-source-dirs: src
build-depends: aeson
, base >=4.12 && <5
, base >=4.12 && <5
, containers
, deepseq
, directory
, extra
, lsp
, lsp-types
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, ghc
, ghcide
, ghcide ^>= 1.0.0.0
, hashable
, retrie >=0.1.1.0
, retrie >=0.1.1.0
, safe-exceptions
, shake
, text
Expand Down
8 changes: 4 additions & 4 deletions plugins/hls-splice-plugin/hls-splice-plugin.cabal
@@ -1,6 +1,6 @@
cabal-version: 2.2
name: hls-splice-plugin
version: 0.4.0.1
version: 1.0.0.0
synopsis: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes
description: HLS Plugin to expand TemplateHaskell Splices and QuasiQuotes.
license: Apache-2.0
Expand All @@ -16,15 +16,15 @@ library
other-modules: Ide.Plugin.Splice.Types
hs-source-dirs: src
build-depends: aeson
, base >=4.12 && <5
, base >=4.12 && <5
, containers
, extra
, foldl
, lsp
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, ghc
, ghc-exactprint
, ghcide >= 0.7.3
, ghcide ^>= 1.0.0.0
, lens
, dlist
, retrie
Expand Down
6 changes: 3 additions & 3 deletions plugins/hls-tactics-plugin/hls-tactics-plugin.cabal
@@ -1,7 +1,7 @@
cabal-version: 2.2
category: Development
name: hls-tactics-plugin
version: 0.5.1.1
version: 1.0.0.0
synopsis: Tactics plugin for Haskell Language Server
description: Please see README.md
author: Sandy Maguire, Reed Mullanix
Expand Down Expand Up @@ -62,9 +62,9 @@ library
, ghc-boot-th
, ghc-exactprint
, ghc-source-gen
, ghcide >=0.1
, ghcide ^>= 1.0.0.0
, lsp
, hls-plugin-api
, hls-plugin-api ^>= 1.0.0.0
, lens
, mtl
, refinery ^>=0.3
Expand Down

0 comments on commit 233c18c

Please sign in to comment.