summaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorJohn MacFarlane <fiddlosopher@gmail.com>2012-06-27 15:59:24 -0700
committerJohn MacFarlane <fiddlosopher@gmail.com>2012-06-27 15:59:24 -0700
commit5fe6e45d14ffee28dcfffe116bb3d24a4681d322 (patch)
tree551234b0c0cfcdd1eec3655765460cf3ee8e2031 /changelog
parentf75f3392ef5a2d6fb78a3ceb71db51d17ed38a44 (diff)
Updated changelog.
Diffstat (limited to 'changelog')
-rw-r--r--changelog30
1 files changed, 30 insertions, 0 deletions
diff --git a/changelog b/changelog
index e4fd525fd..c18ff5498 100644
--- a/changelog
+++ b/changelog
@@ -1,3 +1,33 @@
+pandoc (1.9.4.2)
+
+ * Don't encode/decode file paths if base >= 4.4.
+ Prior to base 4.4, filepaths and command line arguments were treated
+ as unencoded lists of bytes, not unicode strings, so we had to work
+ around that by encoding and decoding them. This commit adds CPP
+ checks for the base version that intelligibly enable encoding/decoding
+ when needed. Fixes a bug with multilingual filenames when pandoc was
+ compiled with ghc 7.4 (#540).
+
+ * Don't generate an empty H1 after hrule slide breaks.
+ We now use a slide-level header with contents `[Str "\0"]` to mark
+ an hrule break. This avoids creation of an empty H1 in these
+ contexts. Closes #484.
+
+ * Docbook reader: Added support for "bold" emphasis. Thanks to mb21.
+
+ * In make_osx_package.sh, ensure citeproc-hs is built with the
+ embed_data_files flag.
+
+ * MediaWiki writer: Avoid extra blank lines after sublists (Gavin Beatty).
+
+ * ConTeXt writer: Don't escape `&`, `^`, `<`, `>`, `_`,
+ simplified escapes for `}` and `{` to `\{` and `\}` (Aditya Mahajan).
+
+ * Added some missing exports and tests to the cabal file
+ (Alexander V Vershilov).
+
+ * Compile with `-rtsopts` and `-threaded` by default.
+
pandoc (1.9.4.1)
* Markdown reader: Added `cf.` and `cp.` to list of likely abbreviations.