diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Revision history for ip2location.io
 
+## 1.3.0  -- 2025-08-05
+
+* Added support for is_bogon field.
+
 ## 1.2.0  -- 2025-08-01
 
 * Added support for abbreviation, dst_start_date and dst_end_date fields.
diff --git a/Configuration.hs b/Configuration.hs
--- a/Configuration.hs
+++ b/Configuration.hs
@@ -28,4 +28,4 @@
 -}
 open :: String -> IO Config
 open apikey = do
-    return (Config apikey "sdk-haskell-iplio" "1.2.0")
+    return (Config apikey "sdk-haskell-iplio" "1.3.0")
diff --git a/IPGeolocation.hs b/IPGeolocation.hs
--- a/IPGeolocation.hs
+++ b/IPGeolocation.hs
@@ -115,7 +115,9 @@
     is_consumer_privacy_network :: Bool,
     is_enterprise_private_network :: Bool,
     is_spammer :: Bool,
-    is_scanner :: Bool,is_botnet :: Bool
+    is_scanner :: Bool,
+    is_botnet :: Bool,
+    is_bogon :: Bool
 } deriving (Show, Generic)
 
 -- | Main response type
diff --git a/ip2location-io.cabal b/ip2location-io.cabal
--- a/ip2location-io.cabal
+++ b/ip2location-io.cabal
@@ -10,7 +10,7 @@
 -- PVP summary:      +-+------- breaking API changes
 --                   | | +----- non-breaking API additions
 --                   | | | +--- code changes with no API change
-version:             1.2.0
+version:             1.3.0
 
 -- A short (one-line) description of the package.
 synopsis:            IP2Location.io Haskell package for IP geolocation and domain WHOIS.
