Skip to content

Commit b251674

Browse files
Update version bounds for GHC 9.14.1
1 parent 5c6f1a7 commit b251674

2 files changed

Lines changed: 13 additions & 12 deletions

File tree

core/streamly-core.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -570,16 +570,16 @@ library
570570
-- depend on streamly.
571571
ghc-prim >= 0.5.3 && < 0.14
572572
, fusion-plugin-types >= 0.1 && < 0.2
573-
, base >= 4.12 && < 4.22
573+
, base >= 4.12 && < 4.23
574574
, exceptions >= 0.8.0 && < 0.11
575575
, transformers >= 0.5.5 && < 0.7
576576

577577
-- streamly-unicode-core
578-
, template-haskell >= 2.14 && < 2.24
578+
, template-haskell >= 2.14 && < 2.25
579579

580580
-- XXX to be removed
581581
, filepath >= 1.4.2 && < 1.6
582-
, containers >= 0.6.0 && < 0.8
582+
, containers >= 0.6.0 && < 0.9
583583
, heaps >= 0.3 && < 0.5
584584

585585
if impl(ghc >= 9.0)
@@ -591,4 +591,4 @@ library
591591
build-depends: monad-control >= 1.0 && < 1.1
592592

593593
if os(windows)
594-
build-depends: Win32 >= 2.6 && < 2.14
594+
build-depends: Win32 >= 2.6 && < 2.15

streamly.cabal

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -531,14 +531,14 @@ library
531531
-- packages depending on the "ghc" package (packages
532532
-- depending on doctest is a common example) can
533533
-- depend on streamly.
534-
base >= 4.12 && < 4.22
534+
base >= 4.12 && < 4.23
535535
, fusion-plugin-types >= 0.1 && < 0.2
536-
, containers >= 0.6.0 && < 0.8
536+
, containers >= 0.6.0 && < 0.9
537537
, deepseq >= 1.4.4 && < 1.6
538538
, exceptions >= 0.8.0 && < 0.11
539539
, mtl >= 2.2.2 && < 2.4
540540
, transformers >= 0.5.5 && < 0.7
541-
, template-haskell >= 2.14 && < 2.24
541+
, template-haskell >= 2.14 && < 2.25
542542

543543
-- The core streamly package
544544
, streamly-core == 0.3.0
@@ -550,10 +550,11 @@ library
550550
-- concurrency
551551
, lockfree-queue >= 0.2.4 && < 0.3
552552

553-
, unicode-data >= 0.1 && < 0.7
553+
, unicode-data >= 0.1 && < 0.9
554554

555555
-- Network
556-
, network >= 2.6 && < 3.3
556+
-- network version 3.2.8 is broken on windows
557+
, network >= 2.6 && < 3.2.8
557558

558559

559560
if impl(ghc < 9.10)
@@ -570,21 +571,21 @@ library
570571
build-depends: monad-control >= 1.0 && < 1.1
571572

572573
if flag(internal-dev)
573-
build-depends: primitive >= 0.5.4 && < 0.9
574+
build-depends: primitive >= 0.5.4 && < 0.10
574575

575576
-- For FileSystem.Event module
576577
if os(linux)
577578
build-depends: directory >= 1.2.2 && < 1.4
578579

579580
if os(windows)
580-
build-depends: Win32 >= 2.6 && < 2.14
581+
build-depends: Win32 >= 2.6 && < 2.15
581582

582583
if os(darwin)
583584
build-depends: directory >= 1.2.2 && < 1.4
584585
frameworks: Cocoa
585586

586587
if flag(inspection)
587-
build-depends: inspection-testing >= 0.4 && < 0.6
588+
build-depends: inspection-testing >= 0.4 && < 0.7
588589

589590
-- Array uses a Storable constraint in dev build making several inspection
590591
-- tests fail

0 commit comments

Comments
 (0)