-
Notifications
You must be signed in to change notification settings - Fork 68
Changes for GHC 9.2.1 #182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
cabal-version: 3.0 | ||
|
||
-- To run tests and binaries you'll need to rename the name of the library | ||
-- and all the local dependencies on it. If not, cabal is unable to come up | ||
-- with a build plan. | ||
|
@@ -8,7 +10,7 @@ | |
|
||
name: binary | ||
version: 0.8.8.0 | ||
license: BSD3 | ||
license: BSD-3-Clause | ||
license-file: LICENSE | ||
author: Lennart Kolmodin <[email protected]> | ||
maintainer: Lennart Kolmodin, Don Stewart <[email protected]> | ||
|
@@ -25,7 +27,6 @@ synopsis: Binary serialisation for Haskell values using lazy ByteStrings | |
category: Data, Parsing | ||
stability: provisional | ||
build-type: Simple | ||
cabal-version: >= 1.8 | ||
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC ==8.2.2, GHC == 8.4.4, GHC == 8.6.5 | ||
extra-source-files: | ||
README.md changelog.md docs/hcar/binary-Lb.tex tools/derive/*.hs | ||
|
@@ -59,6 +60,7 @@ library | |
|
||
if impl(ghc >= 8.0) | ||
ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances | ||
default-language: Haskell2010 | ||
|
||
test-suite qc | ||
type: exitcode-stdio-1.0 | ||
|
@@ -83,6 +85,7 @@ test-suite qc | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
|
||
test-suite read-write-file | ||
|
@@ -104,6 +107,7 @@ test-suite read-write-file | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
|
||
benchmark bench | ||
|
@@ -124,6 +128,7 @@ benchmark bench | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
|
||
benchmark get | ||
|
@@ -145,6 +150,7 @@ benchmark get | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
|
||
benchmark put | ||
|
@@ -163,6 +169,7 @@ benchmark put | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
benchmark generics-bench | ||
type: exitcode-stdio-1.0 | ||
|
@@ -192,6 +199,7 @@ benchmark generics-bench | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 | ||
|
||
benchmark builder | ||
type: exitcode-stdio-1.0 | ||
|
@@ -210,3 +218,4 @@ benchmark builder | |
if impl(ghc <= 7.6) | ||
-- prior to ghc-7.4 generics lived in ghc-prim | ||
build-depends: ghc-prim | ||
default-language: Haskell2010 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:)
A smaller bump would been sufficient, but OTOH it might be nice to force users to upgrade their
cabal-install
if they ever want to reinstallbinary
!