diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2025-02-04 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.5.42
+
+* Addressed some compilation warnings (#467)
+
 2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.5.41
 
 * Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
diff --git a/network-transport-inmemory.cabal b/network-transport-inmemory.cabal
--- a/network-transport-inmemory.cabal
+++ b/network-transport-inmemory.cabal
@@ -1,6 +1,6 @@
 cabal-version: 3.0
 Name:          network-transport-inmemory
-Version:       0.5.41
+Version:       0.5.42
 Build-Type:    Simple
 License:       BSD-3-Clause
 License-file:  LICENSE
@@ -21,7 +21,7 @@
                communication. All endpoints that want to comminicate should be
                created using the same transport.
 
-tested-with:   GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1
+tested-with:   GHC==8.10.7 GHC==9.0.2 GHC==9.2.8 GHC==9.4.5 GHC==9.6.4 GHC==9.8.2 GHC==9.10.1 GHC==9.12.1
 Category:      Network
 extra-doc-files: ChangeLog
 
@@ -39,6 +39,7 @@
                  -Wredundant-constraints
                  -fhide-source-paths
                  -Wpartial-fields
+                 -Wunused-packages
 
 Library
   import:          warnings
diff --git a/tests/TestInMemory.hs b/tests/TestInMemory.hs
--- a/tests/TestInMemory.hs
+++ b/tests/TestInMemory.hs
@@ -4,7 +4,6 @@
 import Network.Transport.Tests.Auxiliary (runTests)
 import Network.Transport.InMemory
 import Network.Transport
-import Control.Applicative ((<$>))
 
 main :: IO ()
 main = do
