This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 6a96db3f9 chore(bindings/haskell): add PVP-compliant version bounds
(#3093)
6a96db3f9 is described below
commit 6a96db3f9be1f22703aa77cc747bb1d9cb02065f
Author: Mingzhuo Yin <[email protected]>
AuthorDate: Sat Sep 16 12:43:48 2023 +0800
chore(bindings/haskell): add PVP-compliant version bounds (#3093)
---
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