From 923b7fad833b347fdd8c20665e825226b78ef46c Mon Sep 17 00:00:00 2001 From: Ivan Perez Date: Tue, 24 Dec 2024 23:48:17 +0000 Subject: [PATCH] ogma-cli: Add version bounds to all dependencies. Refs #119. The cabal packages do not currently specify all version bounds. This makes hackage complain when we upload packages, and can create stability / installation issues for users. This commit adds lower and upper version bounds for all dependencies. --- ogma-cli/ogma-cli.cabal | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ogma-cli/ogma-cli.cabal b/ogma-cli/ogma-cli.cabal index 30dc181f..0c54a645 100644 --- a/ogma-cli/ogma-cli.cabal +++ b/ogma-cli/ogma-cli.cabal @@ -139,7 +139,7 @@ executable ogma build-depends: base >= 4.11.0.0 && < 5 - , optparse-applicative + , optparse-applicative >= 0.14 && < 0.19 , ogma-core >= 1.5.0 && < 1.6 hs-source-dirs: @@ -160,11 +160,11 @@ test-suite test-ogma build-depends: base >= 4.11.0.0 && < 5 - , HUnit - , process - , test-framework - , test-framework-hunit - , unix + , HUnit >= 1.2.0.0 && < 1.7 + , process >= 1.6 && < 1.7 + , test-framework >= 0.8.2 && < 0.9 + , test-framework-hunit >= 0.2.0 && < 0.4 + , unix >= 2.7.2.2 && < 2.9 hs-source-dirs: tests