summaryrefslogtreecommitdiff
path: root/changelog
diff options
context:
space:
mode:
authorfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-11-28 03:22:22 +0000
committerfiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b>2009-11-28 03:22:22 +0000
commit7c6467a115b0b692de35fe5c60142403c00bad76 (patch)
tree2a0f3d302f4c24f1c578144b2e72e665fc76082d /changelog
parentd1b80f8f350c7588ba2c95f2c4a646f7af5a5cb3 (diff)
Bumped version to 1.2.2 and updated changelog.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1630 788f1e2b-df1e-0410-8736-df70ead52e1b
Diffstat (limited to 'changelog')
-rw-r--r--changelog32
1 files changed, 22 insertions, 10 deletions
diff --git a/changelog b/changelog
index c32fb0e8e..137643dba 100644
--- a/changelog
+++ b/changelog
@@ -1,16 +1,13 @@
-pandoc (1.2.1.1)
+pandoc (1.2.2)
[ John MacFarlane ]
- * Use System.IO.UTF8 in markdown2pdf.hs.
-
- * Modified markdown2pdf.hs and markdown2pdf so that they no longer
- create a backup when overwriting a PDF. (Resolves Issue #166.)
-
- * Fixed markdown2pdf.hs to accept --longopt=val options.
-
- * Added man/man1/markdown2pdf.1 to extra-tmp-files in cabal, so that
- it is properly cleaned.
+ * Improved performance of markdown reader by ~10% by
+ eliminating the need for a separate parsing pass for notes.
+ Raw notes are now stored on the first pass (which parses
+ references), then parsed when the note is inserted into
+ the AST. The stateNotes field in ParserState is now a
+ list of [(String, String)] pairs instead of [(String, [Block])].
* Fixed htmlComment parser, adding a needed 'try'.
@@ -56,6 +53,19 @@ pandoc (1.2.1.1)
* Fix inline math parser so that \$ is allowed in math.
Resolves Issue #169.
+ * Translate \int (integral) into unicode when using unicode math
+ method. Resolves Issue #177.
+
+ * Use System.IO.UTF8 in markdown2pdf.hs.
+
+ * Modified markdown2pdf.hs and markdown2pdf so that they no longer
+ create a backup when overwriting a PDF. (Resolves Issue #166.)
+
+ * Fixed markdown2pdf.hs to accept --longopt=val options.
+
+ * Added man/man1/markdown2pdf.1 to extra-tmp-files in cabal, so that
+ it is properly cleaned.
+
* Added haddock comments warning that readers assume \n line endings.
* Updated COPYRIGHT file.
@@ -66,6 +76,8 @@ pandoc (1.2.1.1)
* Changed Makefile so it doesn't build Haskell wrappers.
+ * Fixed Makefile so it doesn't try to build man pages in build-doc.
+
pandoc (1.2.1)
[ John MacFarlane ]