diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,10 @@
+2022-07-07
+        * Version bump (3.10). (#356)
+        * Remove unnecessary dependencies from Cabal package. (#327)
+        * Remove duplicated compiler option. (#328)
+        * Relax version bounds of dependencies. (#335)
+        * Update repo info in cabal file. (#333)
+
 2022-05-06
         * Version bump (3.9). (#320)
         * Compliance with style guide (partial). (#316)
diff --git a/copilot-libraries.cabal b/copilot-libraries.cabal
--- a/copilot-libraries.cabal
+++ b/copilot-libraries.cabal
@@ -1,6 +1,6 @@
 cabal-version:       >=1.10
 name:                copilot-libraries
-version:             3.9
+version:             3.10
 synopsis:            Libraries for the Copilot language.
 description:
   Libraries for the Copilot language.
@@ -28,8 +28,8 @@
 
 source-repository head
     type:       git
-    location:   git://github.com/Copilot-Language/copilot.git
-    subdir:     lib/copilot-libraries
+    location:   https://github.com/Copilot-Language/copilot.git
+    subdir:     copilot-libraries
 
 library
   default-language: Haskell2010
@@ -38,12 +38,10 @@
 
   build-depends: base             >= 4.9 && < 5
 
-               , array            >= 0.5 && < 0.6
                , containers       >= 0.4 && < 0.7
-               , data-reify       >= 0.6 && < 0.7
-               , mtl              >= 2.0 && < 2.3
+               , mtl              >= 2.0 && < 2.4
                , parsec           >= 2.0 && < 3.2
-               , copilot-language >= 3.9 && < 3.10
+               , copilot-language >= 3.10 && < 3.11
 
   exposed-modules:
       Copilot.Library.Libraries
@@ -58,5 +56,4 @@
     , Copilot.Library.MTL
 
   ghc-options:
-    -fwarn-tabs
     -Wall
