diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -3,6 +3,12 @@
 `stackcollapse-ghc` uses [PVP Versioning][1].
 The changelog is available [on GitHub][2].
 
+## 0.0.1.2
+
+This release does not change functionality
+
+* Rebuild with hspec-golden ==0.1.0.2 and fix `Missing field in record construction failFirstTime` (test suite)
+
 ## 0.0.1.1
 
 * Report line location for all errors.
diff --git a/stackcollapse-ghc.cabal b/stackcollapse-ghc.cabal
--- a/stackcollapse-ghc.cabal
+++ b/stackcollapse-ghc.cabal
@@ -1,6 +1,6 @@
 cabal-version:       2.4
 name:                stackcollapse-ghc
-version:             0.0.1.1
+version:             0.0.1.2
 synopsis:            Program to fold GHC prof files into flamegraph input
 description:         Program to fold GHC prof files into flamegraph input
 
@@ -59,13 +59,14 @@
 tested-with:         GHC == 8.6.5
                      GHC == 8.8.2
                      GHC == 8.8.3
+                     GHC == 8.10.1
 
 source-repository head
   type:                git
   location:            https://github.com/marcin-rzeznicki/stackcollapse-ghc.git
 
 common common-options
-  build-depends:       base >= 4.12.0.0 && < 4.14,
+  build-depends:       base >= 4.12.0.0 && < 4.15,
                        bytestring >= 0.10.8
   
   ghc-options:         -Wall
@@ -123,7 +124,7 @@
   hs-source-dirs:      test
   main-is:             Spec.hs
   other-modules:       Helpers
-  build-depends:       hspec-golden ==0.1.0.1,
+  build-depends:       hspec-golden >= 0.1.0.2 && < 0.1.1,
                        hspec,
                        utf8-string ^>=1.0.1
   ghc-options:         -threaded
diff --git a/test/Spec.hs b/test/Spec.hs
--- a/test/Spec.hs
+++ b/test/Spec.hs
@@ -98,6 +98,7 @@
          , readFromFile = Lazy.readFile
          , directory = path_GoldenDir
          , testName
+         , failFirstTime = False
          }
   where
     testName = stem ++ embedInFileName opts
