diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+## 0.3.4.2
+
+-   Fix eqLabels in documentation and default meta
+-   Readme updates
+
+## 0.3.4.1
+
+-   Fix custom labels defined via list (and clarify docs)
+-   Encoding-aware console output
+-   Changes to CI
+-   Cosmetic fixes
+-   Documentation updates
+
 ## 0.3.4.0
 
 -   Updates for pandoc 2.4 and GHC 8.6
diff --git a/docs/index.md b/docs/index.md
--- a/docs/index.md
+++ b/docs/index.md
@@ -224,7 +224,7 @@
 Pandoc doesn't properly support numbering sections in some output
 formats, and section reference labels (see below).
 
-You can let pandoc-crossref handle section numbering instedad. This is
+You can let pandoc-crossref handle section numbering instead. This is
 done via `numberSections` and `sectionsDepth` metadata options.
 
 `numberSections` controls if pandoc-crossref handles numbering sections,
@@ -576,13 +576,13 @@
 
 See [Custom Numbering Schemes](#custom-numbering-schemes)
 
--   `figLabels`, default unset: custom numbering scheme for figures.
--   `subfigLabels`, default `alpha a`: custom numbering scheme for
+-   `figLabels`, default `arabic`: the numbering scheme for figures.
+-   `subfigLabels`, default `alpha a`: the numbering scheme for
     subfigures.
--   `eqnLabels`, default unset: custom numbering scheme for equations.
--   `tblLabels`, default unset: custom numbering scheme for tables.
--   `lstLabels`, default unset: custom numbering scheme for listings.
--   `secLabels`, default unset: custom numbering scheme for sections.
+-   `eqLabels`, default `arabic`: the numbering scheme for equations.
+-   `tblLabels`, default `arabic`: the numbering scheme for tables.
+-   `lstLabels`, default `arabic`: the numbering scheme for listings.
+-   `secLabels`, default `arabic`: the numbering scheme for sections.
 
 ### Item title templates
 
diff --git a/lib/Text/Pandoc/CrossRef/Util/Settings.hs b/lib/Text/Pandoc/CrossRef/Util/Settings.hs
--- a/lib/Text/Pandoc/CrossRef/Util/Settings.hs
+++ b/lib/Text/Pandoc/CrossRef/Util/Settings.hs
@@ -65,7 +65,7 @@
   <> numberSections False
   <> sectionsDepth (MetaString "0")
   <> figLabels (MetaString "arabic")
-  <> eqnLabels (MetaString "arabic")
+  <> eqLabels (MetaString "arabic")
   <> tblLabels (MetaString "arabic")
   <> lstLabels (MetaString "arabic")
   <> secLabels (MetaString "arabic")
diff --git a/lib/Text/Pandoc/CrossRef/Util/Settings/Gen.hs b/lib/Text/Pandoc/CrossRef/Util/Settings/Gen.hs
--- a/lib/Text/Pandoc/CrossRef/Util/Settings/Gen.hs
+++ b/lib/Text/Pandoc/CrossRef/Util/Settings/Gen.hs
@@ -39,7 +39,7 @@
   , "subfigLabels"
   , "chapters"
   , "figLabels"
-  , "eqnLabels"
+  , "eqLabels"
   , "tblLabels"
   , "lstLabels"
   , "secLabels"
diff --git a/pandoc-crossref.cabal b/pandoc-crossref.cabal
--- a/pandoc-crossref.cabal
+++ b/pandoc-crossref.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 39d61fdf8cc92a3c2c4fa382a9847aa07faa45ce3ea2081e99b89c46a711651f
+-- hash: edd11ea020cd9236b745c8aa8d2a9728ac41f337c5648fc1d98b28e62e7f4584
 
 name:           pandoc-crossref
-version:        0.3.4.1
+version:        0.3.4.2
 synopsis:       Pandoc filter for cross-references
 description:    pandoc-crossref is a pandoc filter for numbering figures, equations, tables and cross-references to them.
 category:       Text
@@ -134,7 +134,7 @@
     , gitrev >=1.3.1 && <1.4
     , mtl >=1.1 && <2.3
     , open-browser >=0.2 && <0.3
-    , optparse-applicative >=0.13 && <0.15
+    , optparse-applicative >=0.13 && <0.16
     , pandoc >=2.3 && <2.8
     , pandoc-crossref
     , pandoc-types >=1.17.5.1 && <1.18
