From 91de9a3ffbe1fcc1147cdcac02380b2fe35d3b8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Wed, 26 Mar 2025 20:13:52 +0100 Subject: Disable -Wx-partial for now --- erebos.cabal | 1 + 1 file changed, 1 insertion(+) (limited to 'erebos.cabal') diff --git a/erebos.cabal b/erebos.cabal index 97a95ec..5a17a40 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -45,6 +45,7 @@ source-repository head common common ghc-options: -Wall + -Wno-x-partial -fdefer-typed-holes if flag(ci) -- cgit v1.2.3 From abac0f38fb591fc00efc174e292a1b32e8496266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 27 Mar 2025 20:24:58 +0100 Subject: Bump dependencies, support GHC 9.12 Changelog: Support GHC 9.12 --- erebos.cabal | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'erebos.cabal') diff --git a/erebos.cabal b/erebos.cabal index 5a17a40..5edd5f7 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -55,7 +55,7 @@ common common -Wno-error=unused-imports build-depends: - base ^>= { 4.15, 4.16, 4.17, 4.18, 4.19, 4.20 }, + base ^>= { 4.15, 4.16, 4.17, 4.18, 4.19, 4.20, 4.21 }, default-extensions: DefaultSignatures @@ -143,21 +143,21 @@ library binary >=0.8 && <0.11, bytestring >=0.10 && <0.13, clock >=0.8 && < 0.9, - containers >= 0.6 && <0.8, + containers ^>= { 0.6, 0.7, 0.8 }, crypton ^>= { 1.0 }, deepseq >= 1.4 && <1.6, directory >= 1.3 && <1.4, filepath >=1.4 && <1.6, fsnotify ^>= { 0.4 }, - hashable >=1.3 && <1.5, - hashtables >=1.2 && <1.4, + hashable ^>= { 1.3, 1.4, 1.5 }, + hashtables ^>= { 1.2, 1.3, 1.4 }, iproute >=1.7.12 && <1.8, memory >=0.14 && <0.19, mtl >=2.2 && <2.4, - network >= 3.1 && <3.2, + network ^>= { 3.1, 3.2 }, stm >=2.5 && <2.6, text >= 1.2 && <2.2, - time >= 1.8 && <1.14, + time ^>= { 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14 }, uuid >=1.3 && <1.4, zlib >=0.6 && <0.8 @@ -195,7 +195,7 @@ executable erebos mtl, network, process >=1.6 && <1.7, - template-haskell ^>= { 2.17, 2.18, 2.19, 2.20, 2.21, 2.22 }, + template-haskell ^>= { 2.17, 2.18, 2.19, 2.20, 2.21, 2.22, 2.23 }, text, time, transformers >= 0.5 && <0.7, -- cgit v1.2.3 From 0cd184a6e2d6f184eaf771c9e28b6647d6fef18d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 27 Mar 2025 20:27:41 +0100 Subject: Switch source repositary location to HTTPS --- erebos.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'erebos.cabal') diff --git a/erebos.cabal b/erebos.cabal index 5edd5f7..df146d5 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -40,7 +40,7 @@ Flag ci source-repository head type: git - location: git://erebosprotocol.net/erebos + location: https://code.erebosprotocol.net/erebos common common ghc-options: -- cgit v1.2.3 From 82b82ce6417b23916466acaa83cac28c9d58dc4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 27 Mar 2025 21:05:35 +0100 Subject: Relax crypton lower bound for Debian trixie --- erebos.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'erebos.cabal') diff --git a/erebos.cabal b/erebos.cabal index df146d5..e72c0a0 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -144,7 +144,7 @@ library bytestring >=0.10 && <0.13, clock >=0.8 && < 0.9, containers ^>= { 0.6, 0.7, 0.8 }, - crypton ^>= { 1.0 }, + crypton ^>= { 0.34, 1.0 }, deepseq >= 1.4 && <1.6, directory >= 1.3 && <1.4, filepath >=1.4 && <1.6, -- cgit v1.2.3 From 63e1b79f48e31da10e93169444c3426b631247b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Thu, 27 Mar 2025 21:19:54 +0100 Subject: Build with fsnotify-0.3 Present in Debian bookworm. --- erebos.cabal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'erebos.cabal') diff --git a/erebos.cabal b/erebos.cabal index e72c0a0..15f19ed 100644 --- a/erebos.cabal +++ b/erebos.cabal @@ -148,7 +148,7 @@ library deepseq >= 1.4 && <1.6, directory >= 1.3 && <1.4, filepath >=1.4 && <1.6, - fsnotify ^>= { 0.4 }, + fsnotify ^>= { 0.3, 0.4 }, hashable ^>= { 1.3, 1.4, 1.5 }, hashtables ^>= { 1.2, 1.3, 1.4 }, iproute >=1.7.12 && <1.8, -- cgit v1.2.3