From d1789dda7574035edc12264b45fe5647033f198b Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Tue, 2 Nov 2021 16:16:21 -0700
Subject: [PATCH] Bump to 2.16.1, update changelog.

---
 MANUAL.txt   |  2 +-
 changelog.md | 36 ++++++++++++++++++++++++++++++++++++
 man/pandoc.1 |  2 +-
 pandoc.cabal |  2 +-
 4 files changed, 39 insertions(+), 3 deletions(-)

diff --git a/MANUAL.txt b/MANUAL.txt
index 5cf94cb4a..74b8a11b7 100644
--- a/MANUAL.txt
+++ b/MANUAL.txt
@@ -1,7 +1,7 @@
 ---
 title: Pandoc User's Guide
 author: John MacFarlane
-date: October 30, 2021
+date: November 02, 2021
 ---
 
 # Synopsis
diff --git a/changelog.md b/changelog.md
index 4c2207aca..4ab5fb355 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,41 @@
 # Revision history for pandoc
 
+## pandoc 2.16.1 (2021-11-02)
+
+
+  * Docx reader:  don't let first line indents trigger block quotes (#7655).
+    This fixes a regression introduced in pandoc 2.15.
+
+  * Docx writer: use `getTimestamp` for modification times in
+    reference.docx (#7654).  This ensures that when `SOURCE_DATE_EPOCH` is
+    set, the modification times of files taken from the reference.docx will
+    be set deterministically, allowing for reproducible builds.
+
+  * Lua subsystem (Albert Krewinkel):
+
+    + Load module `pandoc.path` on startup (#7524).  Previously the module
+      always had to be loaded via `require 'pandoc.path'`.
+    + Fix typo in SoftBreak constructor.
+    + Re-add `content` property to Strikeout elements.
+      Fixes a regression introduced in 2.15.
+    + Be more forgiving when retrieving the Image `caption` property.
+      Fixes a regression introduced in 2.15.
+    + Display Attr values using their native Haskell representation.
+    + Allow omitting the 2nd parameter in pandoc.Code constructor.
+      Fixes a regression introduced in 2.15 which required users to always
+      specify an Attr value when constructing a Code element.
+    + Allow to compare, show Citation values.  Comparisons of Citation
+      values are performed in Haskell; values are equal if they represent
+      the same Haskell value. Converting a Citation value to a string
+      now yields its native Haskell string representation.
+    + Restore List behavior of MetaList (#7650).  Fixes a regression
+      introduced in 2.16 which had MetaList elements lose
+      the `pandoc.List` properties.
+    + Restore `content` property on Header elements.
+    + Ensure Block elements have all expected properties.
+    + Ensure Inline elements have all expected properties.
+
+
 ## pandoc 2.16 (2021-10-31)
 
   * Switch back from HsYAML to yaml for parsing YAML metadata (#6084).
diff --git a/man/pandoc.1 b/man/pandoc.1
index e8f455e57..5fb524b58 100644
--- a/man/pandoc.1
+++ b/man/pandoc.1
@@ -1,7 +1,7 @@
 '\" t
 .\" Automatically generated by Pandoc 2.16
 .\"
-.TH "Pandoc User\[cq]s Guide" "" "October 30, 2021" "pandoc 2.16" ""
+.TH "Pandoc User\[cq]s Guide" "" "November 02, 2021" "pandoc 2.16.1" ""
 .hy
 .SH NAME
 pandoc - general markup converter
diff --git a/pandoc.cabal b/pandoc.cabal
index 6fa36f9e7..6f2876413 100644
--- a/pandoc.cabal
+++ b/pandoc.cabal
@@ -1,6 +1,6 @@
 cabal-version:   2.2
 name:            pandoc
-version:         2.16
+version:         2.16.1
 build-type:      Simple
 license:         GPL-2.0-or-later
 license-file:    COPYING.md