diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-09-03 Laurent P. René de Cotret <laurent.decotret@outlook.com> 0.3.2
+
+* Bumped dependency bounds to support GHC 8.10.7 - GHC 9.10.1
+* Updated links to point to Distributed Haskell monorepo
+
 2024-08-28  Laurent P. René de Cotret <laurent.decotret@outlook.com>  0.3.1
 
 * Now tested with GHC 9.10.1.
diff --git a/Setup.hs b/Setup.hs
deleted file mode 100644
--- a/Setup.hs
+++ /dev/null
@@ -1,2 +0,0 @@
-import Distribution.Simple
-main = defaultMain
diff --git a/distributed-process-simplelocalnet.cabal b/distributed-process-simplelocalnet.cabal
--- a/distributed-process-simplelocalnet.cabal
+++ b/distributed-process-simplelocalnet.cabal
@@ -1,37 +1,49 @@
+cabal-version: 3.0
 Name:          distributed-process-simplelocalnet
-Version:       0.3.1
-Cabal-Version: >=1.10
+Version:       0.3.2
 Build-Type:    Simple
-License:       BSD3
+License:       BSD-3-Clause
 License-File:  LICENSE
 Copyright:     Well-Typed LLP
 Author:        Duncan Coutts, Nicolas Wu, Edsko de Vries
-Maintainer:    The Distributed Haskell team
+maintainer:    The Distributed Haskell team
 Stability:     experimental
 Homepage:      http://haskell-distributed.github.com
-Bug-Reports:   https://github.com/haskell-distributed/distributed-process-simplelocalnet/issues
+Bug-Reports:   https://github.com/haskell-distributed/distributed-process/issues
 Synopsis:      Simple zero-configuration backend for Cloud Haskell
 Description:   Simple backend based on the TCP transport which offers node
                discovery based on UDP multicast. This is a zero-configuration
                backend designed to get you going with Cloud Haskell quickly
                without imposing any structure on your application.
-Tested-With:   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
 Category:      Control
-extra-source-files: ChangeLog
+extra-doc-files: ChangeLog
 
-Source-Repository head
+source-repository head
   Type:     git
-  Location: https://github.com/haskell-distributed/distributed-process-simplelocalnet
+  Location: https://github.com/haskell-distributed/distributed-process
+  SubDir:   packages/distributed-process-simplelocalnet
 
+common warnings
+    ghc-options: -Wall
+                 -Wcompat
+                 -Widentities
+                 -Wincomplete-uni-patterns
+                 -Wincomplete-record-updates
+                 -Wredundant-constraints
+                 -fhide-source-paths
+                 -Wpartial-fields
+
 Library
-  Build-Depends:     base >= 4.4 && < 5,
-                     bytestring >= 0.9 && < 0.13,
-                     exceptions >= 0.5 && <0.11,
+  import:            warnings
+  Build-Depends:     base >= 4.14 && < 5,
+                     bytestring >= 0.10 && < 0.13,
+                     exceptions >= 0.10 && <0.11,
                      network >= 3.0 && < 3.3,
                      network-multicast >= 0.1.1 && < 0.4,
                      data-accessor >= 0.2 && < 0.3,
-                     binary >= 0.6.3 && < 0.9,
-                     containers >= 0.4 && < 0.8,
+                     binary >= 0.8 && < 0.9,
+                     containers >= 0.6 && < 0.8,
                      transformers >= 0.2 && < 0.7,
                      network-transport >= 0.5 && < 0.6,
                      network-transport-tcp >= 0.4 && < 0.9,
@@ -39,10 +51,10 @@
   Exposed-modules:   Control.Distributed.Process.Backend.SimpleLocalnet,
                      Control.Distributed.Process.Backend.SimpleLocalnet.Internal.Multicast
   Default-Language:  Haskell2010
-  ghc-options:       -Wall
   HS-Source-Dirs:    src
 
 Test-Suite SimpleLocalNet-TestSuite
+    import:           warnings
     Type:             exitcode-stdio-1.0
     Hs-Source-Dirs:   tests
     Main-Is:          Main.hs
