diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -2,6 +2,11 @@
 
 `web-cookiejar` uses [PVP Versioning][1].
 
+
+## 0.1.2.0 -- 2025-06-24
+
+* Export constructor for BadJarFile; correcting a mistake in 0.1.1.0
+
 ## 0.1.1.0 -- 2025-06-23
 
 * Relax the upper bound of the QuickCheck test dependency
diff --git a/src/Web/Cookie/Jar.hs b/src/Web/Cookie/Jar.hs
--- a/src/Web/Cookie/Jar.hs
+++ b/src/Web/Cookie/Jar.hs
@@ -17,7 +17,7 @@
   , writeNetscapeJar
   , readJar
   , readJarX
-  , BadJarFile
+  , BadJarFile (..)
 
     -- * update HTTP messages
   , addCookiesFromFile
diff --git a/web-cookiejar.cabal b/web-cookiejar.cabal
--- a/web-cookiejar.cabal
+++ b/web-cookiejar.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               web-cookiejar
-version:            0.1.1.0
+version:            0.1.2.0
 synopsis:           Parsing/printing of persistent web cookies
 description:
   A library that provides parsing and printing functions that read and write web
