diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -2,6 +2,13 @@
 
 # Revision history for `resolv`
 
+## 0.2.0.2
+
+_2023-06-12, Alexey Radkov and Andreas Abel_
+
+* Support Haiku OS by including `libnetwork` in configure script.
+  (PR [#23](https://github.com/haskell-hvr/resolv/pull/23).)
+
 ## 0.2.0.1
 
 _2023-03-31, Alexey Radkov and Andreas Abel_
diff --git a/configure b/configure
--- a/configure
+++ b/configure
@@ -3883,7 +3883,7 @@
   return 0;
 }
 _ACEOF
-for ac_lib in '' resolv bind; do
+for ac_lib in '' resolv bind network; do
   if test -z "$ac_lib"; then
     ac_res="none required"
   else
diff --git a/resolv.cabal b/resolv.cabal
--- a/resolv.cabal
+++ b/resolv.cabal
@@ -1,7 +1,7 @@
 cabal-version:       2.2
 
 name:                resolv
-version:             0.2.0.1
+version:             0.2.0.2
 
 synopsis:            Domain Name Service (DNS) lookup via the libresolv standard library routines
 description: {
@@ -55,9 +55,9 @@
                      cbits/hs_resolv_config.h
 
 tested-with:
-  GHC == 9.6.1
-  GHC == 9.4.4
-  GHC == 9.2.7
+  GHC == 9.6.2
+  GHC == 9.4.5
+  GHC == 9.2.8
   GHC == 9.0.2
   GHC == 8.10.7
   GHC == 8.8.4
