diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
 1.0.0.0
 -------
 * initial release
+
+1.0.0.1
+-------
+* removed the upper bounds of the dependencies
diff --git a/scubature.cabal b/scubature.cabal
--- a/scubature.cabal
+++ b/scubature.cabal
@@ -1,37 +1,44 @@
-name:                scubature
-version:             1.0.0.0
-synopsis:            Multidimensional integration over simplices
-description:         This library allows to evaluate integrals over Euclidean and spherical simplices.
-homepage:            https://github.com/stla/scubature#readme
-license:             GPL-3
-license-file:        LICENSE
-author:              Stéphane Laurent
-maintainer:          laurent_step@outlook.fr
-copyright:           2022 Stéphane Laurent
-category:            Numeric, Integration
-build-type:          Simple
-extra-source-files:  README.md
-                     CHANGELOG.md
-cabal-version:       >=1.10
+cabal-version:      >=1.10
+name:               scubature
+version:            1.0.0.1
+license:            GPL-3
+license-file:       LICENSE
+copyright:          2022 Stéphane Laurent
+maintainer:         laurent_step@outlook.fr
+author:             Stéphane Laurent
+homepage:           https://github.com/stla/scubature#readme
+synopsis:           Multidimensional integration over simplices
+description:
+    This library allows to evaluate integrals over Euclidean and spherical simplices.
 
-library
-  hs-source-dirs:      src
-  exposed-modules:     Numeric.Integration.SimplexCubature
-                     , Numeric.Integration.SphericalSimplexCubature
-  other-modules:       Numeric.Integration.SimplexCubature.Internal
-                     , Numeric.Integration.Simplex.Simplex
-                     , Numeric.Integration.SphericalSimplexCubature.Internal
-  other-extensions:    BangPatterns
-                     , DuplicateRecordFields
-  build-depends:       base >= 4.7 && < 5
-                     , array >= 0.5.4.0 && < 0.6
-                     , vector >= 0.12.3.1 && < 0.13
-                     , matrix >= 0.3.6.1 && < 0.4
-                     , containers >= 0.6.4.1 && < 0.7
-                     , ilist >= 0.4.0.1 && < 0.5
-  default-language:    Haskell2010
-  ghc-options:         -Wall
+category:           Numeric, Integration
+build-type:         Simple
+extra-source-files:
+    README.md
+    CHANGELOG.md
 
 source-repository head
-  type:     git
-  location: https://github.com/stla/scubature
+    type:     git
+    location: https://github.com/stla/scubature
+
+library
+    exposed-modules:
+        Numeric.Integration.SimplexCubature
+        Numeric.Integration.SphericalSimplexCubature
+
+    hs-source-dirs:   src
+    other-modules:
+        Numeric.Integration.SimplexCubature.Internal
+        Numeric.Integration.Simplex.Simplex
+        Numeric.Integration.SphericalSimplexCubature.Internal
+
+    default-language: Haskell2010
+    other-extensions: BangPatterns DuplicateRecordFields
+    ghc-options:      -Wall
+    build-depends:
+        base >=4.7 && <5,
+        array >=0.5.4.0,
+        vector >=0.12.3.1,
+        matrix >=0.3.6.1,
+        containers >=0.6.4.1,
+        ilist >=0.4.0.1
