diff --git a/MANUAL.txt b/MANUAL.txt index a63133623aa3..f7fd61faa9e5 100644 --- a/MANUAL.txt +++ b/MANUAL.txt @@ -1,7 +1,7 @@ --- title: Pandoc User's Guide author: John MacFarlane -date: February 14, 2024 +date: February 17, 2024 --- # Synopsis diff --git a/changelog.md b/changelog.md index 4ecbc814c77e..578517072f80 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,21 @@ # Revision history for pandoc +## pandoc 3.1.12.1 (2024-02-17) + + * EPUB writer: omit EPUBv3-specific accessibility features on epub2 + (#9469). Fixes a regression in 3.1.12. + + * More fixes for SVG ids with `--self-contained` (#9467). + This generalizes the fix to #9420 so it applies to things like + `style="fill(url(#..."` and should fix problems with SVGs including + gradients. + + * Powerpoint writer: properly handle math in headings and tables (#9465). + This ensures that paragraphs containing math are wrapped in + a `mc:AlternateContent` node as required. + + * Makefile: make validate-epub check v2 output too. + ## pandoc 3.1.12 (2024-02-14) * Add `djot` as input and output format. Djot is a light markup syntax diff --git a/pandoc-cli/man/pandoc-lua.1 b/pandoc-cli/man/pandoc-lua.1 index 53a8a9a56170..51f63281901b 100644 --- a/pandoc-cli/man/pandoc-lua.1 +++ b/pandoc-cli/man/pandoc-lua.1 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 3.1.12 +.\" Automatically generated by Pandoc 3.1.12.1 .\" -.TH "pandoc-lua" "1" "September 22, 2022" "pandoc 3.1.12" "Pandoc User\[cq]s Guide" +.TH "pandoc-lua" "1" "September 22, 2022" "pandoc 3.1.12.1" "Pandoc User\[cq]s Guide" .SH SYNOPSIS \f[CR]pandoc\-lua\f[R] [\f[I]options\f[R]] [\f[I]script\f[R] [\f[I]args\f[R]]] diff --git a/pandoc-cli/man/pandoc-server.1 b/pandoc-cli/man/pandoc-server.1 index be3f0f07c623..cbbc6bdeb51e 100644 --- a/pandoc-cli/man/pandoc-server.1 +++ b/pandoc-cli/man/pandoc-server.1 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 3.1.12 +.\" Automatically generated by Pandoc 3.1.12.1 .\" -.TH "pandoc-server" "1" "August 15, 2022" "pandoc 3.1.12" "Pandoc User\[cq]s Guide" +.TH "pandoc-server" "1" "August 15, 2022" "pandoc 3.1.12.1" "Pandoc User\[cq]s Guide" .SH SYNOPSIS \f[CR]pandoc\-server\f[R] [\f[I]options\f[R]] .SH DESCRIPTION diff --git a/pandoc-cli/man/pandoc.1 b/pandoc-cli/man/pandoc.1 index 7c106e28df6f..c6aec828ebc1 100644 --- a/pandoc-cli/man/pandoc.1 +++ b/pandoc-cli/man/pandoc.1 @@ -1,6 +1,6 @@ -.\" Automatically generated by Pandoc 3.1.12 +.\" Automatically generated by Pandoc 3.1.12.1 .\" -.TH "pandoc" "1" "February 14, 2024" "pandoc 3.1.12" "Pandoc User\[cq]s Guide" +.TH "pandoc" "1" "February 17, 2024" "pandoc 3.1.12.1" "Pandoc User\[cq]s Guide" .SH NAME pandoc - general markup converter .SH SYNOPSIS diff --git a/pandoc-cli/pandoc-cli.cabal b/pandoc-cli/pandoc-cli.cabal index 7dcfc443ed99..8c4261534193 100644 --- a/pandoc-cli/pandoc-cli.cabal +++ b/pandoc-cli/pandoc-cli.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: pandoc-cli -version: 3.1.12 +version: 3.1.12.1 build-type: Simple license: GPL-2.0-or-later license-file: COPYING.md @@ -70,7 +70,7 @@ executable pandoc buildable: True -- Note: we always link to an exact version of pandoc, with the -- same version as this package: - build-depends: pandoc == 3.1.12, + build-depends: pandoc == 3.1.12.1, text other-modules: PandocCLI.Lua , PandocCLI.Server diff --git a/pandoc.cabal b/pandoc.cabal index 1364f68da402..4640272ce499 100644 --- a/pandoc.cabal +++ b/pandoc.cabal @@ -1,6 +1,6 @@ cabal-version: 2.4 name: pandoc -version: 3.1.12 +version: 3.1.12.1 build-type: Simple license: GPL-2.0-or-later license-file: COPYING.md