Skip to content

Commit

Permalink
Update hls-stan-plugin bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
0rphee committed Nov 18, 2023
1 parent f82ae7a commit d0687a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/support/plugin-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ For example, a plugin to provide a formatter which has itself been abandoned has
| `hls-stylish-haskell-plugin` | 2 | 9.8 |
| `hls-overloaded-record-dot-plugin` | 2 | 9.0 |
| `hls-floskell-plugin` | 3 | 9.6, 9.8 |
| `hls-stan-plugin` | 3 | 9.2.(4-8), 9.8 |
| `hls-stan-plugin` | 3 | 9.2.(4-8) |
| `hls-retrie-plugin` | 3 | 9.8 |
| `hls-splice-plugin` | 3 | 9.8 |
2 changes: 1 addition & 1 deletion haskell-language-server.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ common hlint
cpp-options: -Dhls_hlint

common stan
if flag(stan) && (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
if flag(stan) && (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
build-depends: hls-stan-plugin == 2.4.0.0
cpp-options: -Dhls_stan

Expand Down
4 changes: 2 additions & 2 deletions plugins/hls-stan-plugin/hls-stan-plugin.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ flag pedantic
manual: True

library
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
buildable: True
else
buildable: False
Expand Down Expand Up @@ -59,7 +59,7 @@ library
OverloadedStrings

test-suite test
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.8.0))
if (impl(ghc > 8.8.1) && impl(ghc <= 9.2.3) || impl(ghc >= 9.4.0) && impl(ghc < 9.10.0))
buildable: True
else
buildable: False
Expand Down

0 comments on commit d0687a2

Please sign in to comment.