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/jackpolynomials.cabal b/jackpolynomials.cabal
--- a/jackpolynomials.cabal
+++ b/jackpolynomials.cabal
@@ -1,35 +1,41 @@
-name:                jackpolynomials
-version:             1.0.0.0
-synopsis:            Jack, zonal, and Schur polynomials
-description:         This library can evaluate Jack polynomials, zonal polynomials and Schur polynomials. It is also able to compute them in symbolic form.
-homepage:            https://github.com/stla/jackpolynomials#readme
-license:             GPL-3
-license-file:        LICENSE
-author:              Stéphane Laurent
-maintainer:          laurent_step@outlook.fr
-copyright:           2022 Stéphane Laurent
-category:            Math, Algebra
-build-type:          Simple
-extra-source-files:  README.md
-                     CHANGELOG.md
-cabal-version:       >=1.10
+cabal-version:      >=1.10
+name:               jackpolynomials
+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/jackpolynomials#readme
+synopsis:           Jack, zonal, and Schur polynomials
+description:
+    This library can evaluate Jack polynomials, zonal polynomials and Schur polynomials. It is also able to compute them in symbolic form.
 
-library
-  hs-source-dirs:      src
-  exposed-modules:     Math.Algebra.Jack.GPochhammer
-                     , Math.Algebra.Jack
-                     , Math.Algebra.JackPol
-  other-modules:       Math.Algebra.Jack.Internal
-  build-depends:       base >= 4.7 && < 5
-                     , ilist >= 0.4.0.1 && < 0.5
-                     , array >= 0.5.4.0 && < 0.6
-                     , lens >= 5.0.1 && < 5.1
-                     , math-functions >= 0.3.4.2 && < 0.4
-                     , mpolynomials >= 0.1.0.0 && < 0.2
-                     , numeric-prelude >= 0.4.4 && < 0.5
-  default-language:    Haskell2010
-  ghc-options:         -Wall
+category:           Math, Algebra
+build-type:         Simple
+extra-source-files:
+    README.md
+    CHANGELOG.md
 
 source-repository head
-  type:     git
-  location: https://github.com/stla/jack
+    type:     git
+    location: https://github.com/stla/jack
+
+library
+    exposed-modules:
+        Math.Algebra.Jack.GPochhammer
+        Math.Algebra.Jack
+        Math.Algebra.JackPol
+
+    hs-source-dirs:   src
+    other-modules:    Math.Algebra.Jack.Internal
+    default-language: Haskell2010
+    ghc-options:      -Wall
+    build-depends:
+        base >=4.7 && <5,
+        ilist >=0.4.0.1,
+        array >=0.5.4.0,
+        lens >=5.0.1,
+        math-functions >=0.3.4.2,
+        mpolynomials >=0.1.0.0,
+        numeric-prelude >=0.4.4
