-
Notifications
You must be signed in to change notification settings - Fork 6
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 dependencies #145
Conversation
The following command passes: > cabal test --constraint 'hedgehog==1.5' --constraint 'doctest==0.23.0'
haskell/actions/setup was deprecated and suggests using haskell-actions/setup.
a010c72
to
1c100bb
Compare
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.
LGTM except for the two minor suggestions
src/Time/Units.hs
Outdated
@@ -72,7 +72,9 @@ import Control.Monad.IO.Class (MonadIO, liftIO) | |||
import Data.Char (isDigit, isLetter) | |||
import Data.Coerce (coerce) | |||
import Data.Data (Data) | |||
#if ( __GLASGOW_HASKELL__ < 910 ) |
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.
This conditional is related to library changes, not language changes, so it would be more appropriate to check it with #if !(MIN_VERSION_base(4,20,0))
Problem: foldl' is exported from Prelude starting from ghc-9.10 (base 4.20), so explicitly importing it causes a warning. Solution: use CPP to import it only for base older than 4.20.
Problem: with recent ghc readme-test complains about orphan instances in README.md. Solution: these instances are intentionally defined in README, so we supress the warning.
There are some minor changes in the package, so we're bumping the patch version.
9d44b65
to
52385db
Compare
Description
This PR bumps upper bounds on some deps and updates tooling versions in CI config.
Related issue(s)
None
✅ Checklist for your Pull Request
Ideally a PR has all of the checkmarks set.
If something in this list is irrelevant to your PR, you should still set this
checkmark indicating that you are sure it is dealt with (be that by irrelevance).
Related changes (conditional)
Tests
silently reappearing again.
Documentation
Public contracts
of Public Contracts policy.
and
Stylistic guide (mandatory)
✓ Release Checklist
o-clock.cabal
.under the "Unreleased" section to a new section for this release version.
I added
@since
haddock annotations.with a summary of all user-facing changes.
vX.Y.Z