Skip to content
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

Add support for GHC 9.10. #74

Merged
merged 7 commits into from
May 20, 2024
Merged

Commits on May 20, 2024

  1. Configuration menu
    Copy the full SHA
    49d7ba3 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    5c731ec View commit details
    Browse the repository at this point in the history
  3. Stop importing implicitly from Prelude.

    This commit fixes a build failure that occurs when compiling with GHC
    version `>= 9.10` and base version `>= 4.20.0.0`:
    
    ```
    [1 of 2] Compiling Codec.Binary.Bech32.Internal
    src/Codec/Binary/Bech32/Internal.hs:93:1: error: [GHC-66111]
        The import of ‘Data.Foldable’ is redundant
          except perhaps to import instances from ‘Data.Foldable’
        To import instances alone, use: import Data.Foldable()
       |
    93 | import Data.Foldable
       | ^^^^^^^^^^^^^^^^^^^^...
    ```
    
    Related issue:
    haskell/core-libraries-committee#167
    jonathanknowles committed May 20, 2024
    Configuration menu
    Copy the full SHA
    7011bcb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    191f2a7 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    7fc0b64 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26a1802 View commit details
    Browse the repository at this point in the history
  7. Fix nix configuration.

    angerman authored and jonathanknowles committed May 20, 2024
    Configuration menu
    Copy the full SHA
    4527f06 View commit details
    Browse the repository at this point in the history