Skip to content

Commit 75cb36a

Browse files
committed
Bump to 3.1.12.2 (also pandoc-cli), update changelog, manual date.
1 parent 79567bf commit 75cb36a

File tree

4 files changed

+67
-4
lines changed

4 files changed

+67
-4
lines changed

MANUAL.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Pandoc User's Guide
33
author: John MacFarlane
4-
date: February 17, 2024
4+
date: February 29, 2024
55
---
66

77
# Synopsis

changelog.md

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,68 @@
11
# Revision history for pandoc
22

3+
## pandoc 3.1.12.2 (2024-02-29)
4+
5+
* Docx reader:
6+
7+
+ Ensure that table captions are counted (#9518).
8+
+ Detect caption by style name not id (#9518).
9+
The styleId can change depending on the localization.
10+
+ Avoid emitting empty paragraph where caption was.
11+
12+
* Markdown reader: fix regression in link parsing with wikilinks extensions
13+
(#9481). This fixes a regression introduced in 3.1.12.
14+
15+
* Org reader/writer: support admonitions (#9475).
16+
17+
* Org writer: omit extra blank line at end of quote block.
18+
19+
* Typst writer: ensure that `-`, `+`, etc. are escaped at beginning of block
20+
(#9478). Our recent relaxing of escaping (#9386) caused problems for
21+
things like emphasized `-` characters that were rendered using
22+
`#strong[-]#`. This now gets rendered as `#strong[\-]`.
23+
24+
* LaTeX writer: fix bug when a language is specified in two different ways
25+
(#9472). If you used `lang: de-DE` but then had a span or div with
26+
`lang=de`, the preamble would try to load `ngerman` twice, leading
27+
to an error. This fix ensures that a language is only loaded once.
28+
29+
* Docx writer: Don't copy over `footnotePr` in `settings.xml`
30+
from reference.docx (#9522).
31+
32+
* EPUB writer: omit EPUB2-specific meta tag on EPUB3 (#9493).
33+
This caused a validation failure in epubs with cover images.
34+
35+
* Lua: avoid crashing when an error message is not valid UTF-8 (Albert
36+
Krewinkel).
37+
38+
* Text.Pandoc.SelfContained:
39+
40+
+ Add `role="img"` to svgs.
41+
+ Add `aria-label` to svg elements with `alt` text if present.
42+
Screen readers ignore `alt` attributes on svg elements but do
43+
pay attention to `aria-label` (#9525).
44+
45+
* Text.Pandoc.Shared: Fix regression in section numbering in
46+
`makeSections` (#9516). Starting with pandoc 3.1.12, unnumbered
47+
sections incremented the section number.
48+
49+
* Text.Pandoc.Class: fix `openUrl` TLS negotiation (#9483).
50+
With the release of TLS 2.0.0, the TLS library started requiring
51+
Extended Main Secret for the TLS handshake. This caused problems
52+
connecting to zotero's server and others that do not support TLS 1.3.
53+
This commit relaxes this requirement.
54+
55+
* Depend on djot 0.1.1.0 (fixes rendering on multiline block attributes).
56+
57+
* Use new releases of skylighting-format-blaze-html (#9520).
58+
Fixes auto-wrapping of long source lines in HTML print media.
59+
60+
* Use new commonmark-extensions (fixes issue with the
61+
`rebase_relative_paths` extension when used with commonmark/gfm.
62+
63+
* Makefile: improve epub-validation target (#9493).
64+
Use `--epub-cover-image` to catch issues that only arise with that.
65+
366
## pandoc 3.1.12.1 (2024-02-17)
467

568
* EPUB writer: omit EPUBv3-specific accessibility features on epub2

pandoc-cli/pandoc-cli.cabal

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: pandoc-cli
3-
version: 3.1.12.1
3+
version: 3.1.12.2
44
build-type: Simple
55
license: GPL-2.0-or-later
66
license-file: COPYING.md
@@ -70,7 +70,7 @@ executable pandoc
7070
buildable: True
7171
-- Note: we always link to an exact version of pandoc, with the
7272
-- same version as this package:
73-
build-depends: pandoc == 3.1.12.1,
73+
build-depends: pandoc == 3.1.12.2,
7474
text
7575
other-modules: PandocCLI.Lua
7676
, PandocCLI.Server

pandoc.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cabal-version: 2.4
22
name: pandoc
3-
version: 3.1.12.1
3+
version: 3.1.12.2
44
build-type: Simple
55
license: GPL-2.0-or-later
66
license-file: COPYING.md

0 commit comments

Comments
 (0)