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

[Chore] Update some versions #243

Merged
merged 7 commits into from
Nov 19, 2021
Merged

[Chore] Update some versions #243

merged 7 commits into from
Nov 19, 2021

Commits on Nov 16, 2021

  1. Update stackage resolver

    Problem: lts-15.11 specified in stack.yaml is rather old.
    Solution: update to the latest one.
    gromakovsky committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    c14d66b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    33f9f6a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    37a2ce5 View commit details
    Browse the repository at this point in the history
  4. Support hashable-1.4 without warnings

    Problem: in hashable-1.4 `Eq` is a superclass of `Hashable`,
    it causes warnings in some code.
    
    Solution: use CPP to check `hashable` version and replace
    `(Eq a, Hashable a)` constraint with just `Hashable a` for new version.
    gromakovsky committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    be02075 View commit details
    Browse the repository at this point in the history
  5. Drop the last section from README

    Problem: it's hard to keep "Projects that use Universum" section
    up-to-date. Now it mostly contains deprecated projects.
    
    Solution: delete it since it's not really useful and rather confusing
    (due to not being promptly updated).
    gromakovsky committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    b947db9 View commit details
    Browse the repository at this point in the history
  6. Replace IncoherentInstances with fine-grained pragmas

    Problem: IncoherentInstances extensions is deprecated,
    it's recommended to use per-instance pragmas instead.
    
    Solution: do not enable this extension, specify per-instance
    pragmas where necessary.
    gromakovsky committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    088f9a6 View commit details
    Browse the repository at this point in the history
  7. Fix benchmark compilation with ghc-9.0.1

    Problem: for some reason ghc-9.0.1 is unable to compile benchmark code
    which is successfully compiled by older versions of ghc.
    
    Solution: provide explicit type annotations to help ghc compile this
    code, it appeared to be sufficient.
    gromakovsky committed Nov 16, 2021
    Configuration menu
    Copy the full SHA
    f0df61a View commit details
    Browse the repository at this point in the history