Skip to content

Commit 34d0037

Browse files
committed
update rerefined dependency
1 parent e0ddad5 commit 34d0037

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

flake.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ dependencies:
6363
- text-builder-linear ^>= 0.1.3
6464

6565
# instances
66-
- rerefined ^>= 0.6.0
66+
- rerefined ^>= 0.8.0
6767
- vector-sized >= 1.5.0 && < 1.7
6868
- vector >= 0.12.3.1 && < 0.14
6969

strongweak.cabal

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ library
5555
ghc-options: -fhide-source-paths -Wall
5656
build-depends:
5757
base >=4.18 && <5
58-
, rerefined >=0.6.0 && <0.7
58+
, rerefined >=0.8.0 && <0.9
5959
, text >=2.0 && <2.2
6060
, text-builder-linear >=0.1.3 && <0.2
6161
, vector >=0.12.3.1 && <0.14
@@ -91,7 +91,7 @@ test-suite spec
9191
, generic-random >=1.5.0.1 && <1.6
9292
, hspec >=2.7 && <2.12
9393
, quickcheck-instances >=0.3.26 && <0.4
94-
, rerefined >=0.6.0 && <0.7
94+
, rerefined >=0.8.0 && <0.9
9595
, strongweak
9696
, text >=2.0 && <2.2
9797
, text-builder-linear >=0.1.3 && <0.2

test/Common.hs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import Test.QuickCheck.Instances.Natural()
1414

1515
data DS (s :: Strength)
1616
= DS0 (SW s Word8) (SW s Word8) Word8 (SW s Word8) (SW s Word8)
17-
| DS1 (SW s (Refined (CompareValue LT Pos 100) Natural))
17+
| DS1 (SW s (Refined (CompareValue RelOpLT Pos 100) Natural))
1818
deriving stock (Generic)
1919

2020
deriving stock instance Eq (DS Strong)
@@ -32,7 +32,7 @@ instance Strengthen (DS Strong) where strengthen = strengthenGeneric
3232

3333
data DP (s :: Strength) = DP
3434
{ dp1f0 :: SW s Word32
35-
, dp1f1 :: SW s (Refined (CompareValue GT Pos 42) Natural)
35+
, dp1f1 :: SW s (Refined (CompareValue RelOpGT Pos 42) Natural)
3636
, dp1f2 :: SW s Word8
3737
, dp1f3 :: Word8
3838
, dp1f4 :: SW s Word8

0 commit comments

Comments
 (0)