This is an automated email from the ASF dual-hosted git repository. silver pushed a commit to branch haskell-release in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
commit 92c506014ff195b35446e395b60864596fc42b3d Author: silver-ymz <[email protected]> AuthorDate: Sat Sep 16 12:23:49 2023 +0800 chore(bindings/haskell): add PVP-compliant version bounds Signed-off-by: silver-ymz <[email protected]> --- bindings/haskell/opendal-hs.cabal | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/bindings/haskell/opendal-hs.cabal b/bindings/haskell/opendal-hs.cabal index 12527beb4..76cd203ec 100644 --- a/bindings/haskell/opendal-hs.cabal +++ b/bindings/haskell/opendal-hs.cabal @@ -40,13 +40,13 @@ source-repository head common base ghc-options: -Wall build-depends: - base >=4.10 && <4.17, - unordered-containers >=0.2, - bytestring >=0.11, - mtl >=2.2, - time >=1.10, - co-log >=0.5, - text >=2 + base >= 4.10 && < 4.17, + bytestring >= 0.11.4 && < 0.12, + mtl >= 2.2.2 && < 2.3, + text (>= 2.0.2 && < 2.1) || (>= 1.2.5 && < 1.3), + time >= 1.11.1 && < 1.12, + unordered-containers >= 0.2.19 && < 0.3, + co-log >= 0.5.0 && < 0.6, default-language: Haskell2010 default-extensions: OverloadedStrings, @@ -72,5 +72,5 @@ test-suite opendal-hs-test hs-source-dirs: test build-depends: opendal-hs, - tasty, - tasty-hunit \ No newline at end of file + tasty >= 1.5 && < 1.6, + tasty-hunit >= 0.10.1 && < 0.11, \ No newline at end of file
