diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,3 +1,8 @@
+Changes in 0.6.1.1
+
+  * doctests are marked as non-buildable on GHC9.0 & 9.2
+
+
 Changes in 0.6.1.0
 
   * `foldMap`, `foldMapF`, `foldMapNatF` is added
diff --git a/fixed-vector-hetero.cabal b/fixed-vector-hetero.cabal
--- a/fixed-vector-hetero.cabal
+++ b/fixed-vector-hetero.cabal
@@ -1,5 +1,5 @@
 Name:           fixed-vector-hetero
-Version:        0.6.1.0
+Version:        0.6.1.1
 Synopsis:       Library for working with product types generically
 Description:
   Library allow to work with arbitrary product types in generic
@@ -23,10 +23,11 @@
      || ==8.4.4
      || ==8.6.5
      || ==8.8.4
-     || ==8.10.2
+     || ==8.10.7
      || ==9.0.1
-  , GHCJS ==8.4
+     || ==9.2.1
 
+
 source-repository head
   type:     git
   location: http://github.com/Shimuuar/fixed-vector-hetero
@@ -49,15 +50,21 @@
 
 
 test-suite doctests
-    if impl(ghcjs)
-      buildable: False
-    type:             exitcode-stdio-1.0
-    main-is:          doctests.hs
-    hs-source-dirs:   test
-    default-language: Haskell2010
-    build-depends:
+  if impl(ghcjs)
+    buildable: False
+  -- GHC 9.0 panic while running doctests
+  if impl(ghc >= 9.0) && impl(ghc < 9.1)
+    buildable: False
+  -- GHC 9.2 too
+  if impl(ghc >= 9.2) && impl(ghc < 9.3)
+    buildable: False
+  type:             exitcode-stdio-1.0
+  main-is:          doctests.hs
+  hs-source-dirs:   test
+  default-language: Haskell2010
+  build-depends:
         base                >=4.9  && <5
-      , doctest             >=0.15 && <0.19
+      , doctest             >=0.15 && <0.20
       , fixed-vector        >=1.0
       , fixed-vector-hetero -any
 
