diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # hw-balancedparens
 
-[![CircleCI](https://circleci.com/gh/haskell-works/hw-balancedparens.svg?style=svg)](https://circleci.com/gh/haskell-works/hw-balancedparens)
+[![Binaries](https://github.com/haskell-works/hw-balancedparens/actions/workflows/haskell.yml/badge.svg)](https://github.com/haskell-works/hw-balancedparens/actions/workflows/haskell.yml)
 
 For documentation, see the week [wiki](https://github.com/haskell-works/hw-balancedparens/wiki) and
 [API docs](https://hackage.haskell.org/package/hw-balancedparens).
diff --git a/hw-balancedparens.cabal b/hw-balancedparens.cabal
--- a/hw-balancedparens.cabal
+++ b/hw-balancedparens.cabal
@@ -1,7 +1,7 @@
 cabal-version: 2.2
 
 name:                   hw-balancedparens
-version:                0.4.1.1
+version:                0.4.1.2
 synopsis:               Balanced parentheses
 description:            Balanced parentheses.
 category:               Data, Bit, Succinct Data Structures, Data Structures
@@ -9,10 +9,10 @@
 bug-reports:            https://github.com/haskell-works/hw-balancedparens/issues
 author:                 John Ky
 maintainer:             newhoggy@gmail.com
-copyright:              2016-2020 John Ky
+copyright:              2016-2021 John Ky
 license:                BSD-3-Clause
 license-file:           LICENSE
-tested-with:            GHC == 8.10.2, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4
+tested-with:            GHC == 9.2.2, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5
 build-type:             Simple
 extra-source-files:     README.md
 
@@ -22,14 +22,14 @@
 
 common base                       { build-depends: base                       >= 4.11       && < 5      }
 
-common bytestring                 { build-depends: bytestring                 >= 0.9        && < 0.11   }
+common bytestring                 { build-depends: bytestring                 >= 0.9        && < 0.12   }
 common criterion                  { build-depends: criterion                  >= 1.2        && < 1.6    }
 common deepseq                    { build-depends: deepseq                    >= 1.4.2.0    && < 1.5    }
 common directory                  { build-depends: directory                  >= 1.2.2      && < 1.4    }
-common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.17   }
+common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.21   }
 common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }
-common generic-lens               { build-depends: generic-lens               >= 1.2.0.0    && < 2.1    }
-common hedgehog                   { build-depends: hedgehog                   >= 1.0        && < 1.1    }
+common generic-lens               { build-depends: generic-lens               >= 1.2.0.0    && < 2.3    }
+common hedgehog                   { build-depends: hedgehog                   >= 1.0        && < 1.2    }
 common hspec                      { build-depends: hspec                      >= 2.2        && < 3.0    }
 common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1        && < 0.2    }
 common hw-bits                    { build-depends: hw-bits                    >= 0.7.2.1    && < 0.8    }
@@ -38,10 +38,10 @@
 common hw-int                     { build-depends: hw-int                     >= 0.0.2      && < 0.0.3  }
 common hw-prim                    { build-depends: hw-prim                    >= 0.6.2.25   && < 0.7    }
 common hw-rankselect-base         { build-depends: hw-rankselect-base         >= 0.3.2.1    && < 0.4    }
-common lens                       { build-depends: lens                       >= 4          && < 5      }
+common lens                       { build-depends: lens                       >= 4          && < 6      }
 common mmap                       { build-depends: mmap                       >= 0.5.9      && < 0.6    }
-common optparse-applicative       { build-depends: optparse-applicative       >= 0.14       && < 0.17   }
-common transformers               { build-depends: transformers               >= 0.5.2      && < 0.6    }
+common optparse-applicative       { build-depends: optparse-applicative       >= 0.14       && < 0.18   }
+common transformers               { build-depends: transformers               >= 0.5.6.2    && < 0.7    }
 common vector                     { build-depends: vector                     >= 0.12       && < 0.13   }
 
 common hw-balancedparens
@@ -52,7 +52,9 @@
 
 common config
   default-language:     Haskell2010
-  ghc-options:          -Wall -O2 -msse4.2
+  ghc-options:          -Wall -O2
+  if arch(x86_64)
+    ghc-options:        -msse4.2
 
 library
   import:               base, config
