diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,10 @@
 # Revision history for greskell-core
 
+## 1.0.0.2  -- 2024-09-12
+
+* Update dependency version bounds with cabal-plan-bounds.
+  This adds support for new packages, while drops support for old ones.
+
 ## 1.0.0.1  -- 2022-11-24
 
 * Confirm test with ghc-9.2.5, vector-0.13.0.0 and aeson-2.1.0.0.
diff --git a/greskell-core.cabal b/greskell-core.cabal
--- a/greskell-core.cabal
+++ b/greskell-core.cabal
@@ -1,5 +1,5 @@
 name:                   greskell-core
-version:                1.0.0.1
+version:                1.0.0.2
 author:                 Toshio Ito <debug.ito@gmail.com>
 maintainer:             Toshio Ito <debug.ito@gmail.com>
 license:                BSD3
@@ -10,7 +10,7 @@
                         .
                         This package contains only core data types and tools used commonly by other related packages.
 category:               Data
-cabal-version:          >= 1.10
+cabal-version:          2.0
 build-type:             Simple
 extra-source-files:     README.md, ChangeLog.md
 homepage:               https://github.com/debug-ito/greskell/
@@ -30,17 +30,17 @@
                         Data.Greskell.AsIterator
   other-modules:        Data.Greskell.GraphSON.GraphSONTyped,
                         Data.Greskell.GraphSON.Core
-  build-depends:        base >=4.9.0.0 && <4.17,
-                        aeson >=2.0.2.0 && <2.2,
-                        unordered-containers >=0.2.7.1 && <0.3,
-                        hashable >=1.2.6.1 && <1.5,
-                        scientific >=0.3.4.9 && <0.4,
-                        text >=1.2.2.1 && <1.3,
-                        semigroups >=0.18.2 && <0.21,
-                        vector >=0.12.0.1 && <0.14,
-                        containers >=0.5.7.1 && <0.7,
-                        uuid >=1.3.13 && <1.4,
-                        bytestring >=0.10.8.1 && <0.12
+  build-depends:        base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
+                        aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
+                        unordered-containers ^>=0.2.15,
+                        hashable ^>=1.4.0,
+                        scientific ^>=0.3.7,
+                        text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
+                        semigroups ^>=0.20,
+                        vector ^>=0.12.3 || ^>=0.13.0,
+                        containers ^>=0.6.2,
+                        uuid ^>=1.3.15,
+                        bytestring ^>=0.10.9 || ^>=0.11.3 || ^>=0.12.0
 
 test-suite spec
   type:                 exitcode-stdio-1.0
@@ -56,10 +56,15 @@
                         Data.Greskell.Test.QuickCheck,
                         ExamplesSpec
   build-tool-depends:   hspec-discover:hspec-discover
-  build-depends:        base, text, aeson, unordered-containers, vector, bytestring,
+  build-depends:        base ^>=4.13.0 || ^>=4.14.0 || ^>=4.15.0 || ^>=4.16.0 || ^>=4.17.0 || ^>=4.18.0 || ^>=4.19.0 || ^>=4.20.0,
+                        text ^>=1.2.3 || ^>=2.0.2 || ^>=2.1,
+                        aeson ^>=2.0.2 || ^>=2.1.0 || ^>=2.2.3,
+                        unordered-containers ^>=0.2.15,
+                        vector ^>=0.12.3 || ^>=0.13.0,
+                        bytestring ^>=0.10.9 || ^>=0.11.3 || ^>=0.12.0,
                         greskell-core,
-                        hspec >=2.2.3,
-                        QuickCheck >=2.8.2 && <2.15
+                        hspec ^>=2.9.1 || ^>=2.10.6 || ^>=2.11.9,
+                        QuickCheck ^>=2.14.2 || ^>=2.15.0
 
 source-repository head
   type:                 git
