diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,7 @@
+2.7.0
+-----
+* Support ghc 9.10.3
+
 2.6.0
 -----
 * Support Cabal 3.14
diff --git a/cabal-bounds.cabal b/cabal-bounds.cabal
--- a/cabal-bounds.cabal
+++ b/cabal-bounds.cabal
@@ -1,6 +1,6 @@
 cabal-version:      >=1.10.0
 name:               cabal-bounds
-version:            2.6.0
+version:            2.7.0
 license:            BSD3
 license-file:       LICENSE
 maintainer:         daniel.trstenjak@gmail.com
@@ -8,7 +8,7 @@
 tested-with:
     ghc ==7.6.2 ghc ==7.6.3 ghc ==7.8.3 ghc ==7.10.1 ghc ==8.0.1
     ghc ==8.2.1 ghc ==8.4.2 ghc ==8.6.3 ghc ==8.10.1 ghc ==9.4.7
-    ghc ==9.8.2
+    ghc ==9.8.2 ghc ==9.10.3
 
 synopsis:
     A command line program for managing the dependency versions in a cabal file.
diff --git a/lib/CabalBounds/Drop.hs b/lib/CabalBounds/Drop.hs
--- a/lib/CabalBounds/Drop.hs
+++ b/lib/CabalBounds/Drop.hs
@@ -9,7 +9,6 @@
 import CabalBounds.Bound (DropBound(..))
 import CabalBounds.Dependencies (Dependencies, filterDependency, dependencyIf)
 import qualified CabalLenses as CL
-import Data.List (foldl')
 import Distribution.PackageDescription (GenericPackageDescription)
 import Distribution.Package (Dependency(..))
 import Distribution.Version (UpperBound(..), anyVersion)
diff --git a/lib/CabalBounds/Dump.hs b/lib/CabalBounds/Dump.hs
--- a/lib/CabalBounds/Dump.hs
+++ b/lib/CabalBounds/Dump.hs
@@ -5,7 +5,6 @@
 
 import Distribution.PackageDescription (GenericPackageDescription)
 import qualified Data.HashMap.Strict as HM
-import Data.List (foldl')
 import Data.Maybe (fromMaybe)
 import qualified CabalLenses as CL
 import CabalBounds.Dependencies (Dependencies(..), allDependency, filterDependency)
diff --git a/lib/CabalBounds/Main.hs b/lib/CabalBounds/Main.hs
--- a/lib/CabalBounds/Main.hs
+++ b/lib/CabalBounds/Main.hs
@@ -33,7 +33,7 @@
 import Control.Monad.IO.Class
 import Control.Lens
 import qualified Data.HashMap.Strict as HM
-import Data.List (foldl', sortBy)
+import Data.List (sortBy)
 import Data.Function (on)
 import Data.Char (toLower)
 import Data.Maybe (fromMaybe, catMaybes)
diff --git a/lib/CabalBounds/Update.hs b/lib/CabalBounds/Update.hs
--- a/lib/CabalBounds/Update.hs
+++ b/lib/CabalBounds/Update.hs
@@ -14,7 +14,6 @@
 import CabalBounds.VersionComp (VersionComp(..))
 import CabalBounds.Types
 import qualified CabalLenses as CL
-import Data.List (foldl')
 import qualified Data.HashMap.Strict as HM
 import Data.Maybe (fromMaybe)
 
