aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Pandoc.cabal.in2
-rw-r--r--TODO25
-rw-r--r--src/Main.hs2
3 files changed, 2 insertions, 27 deletions
diff --git a/Pandoc.cabal.in b/Pandoc.cabal.in
index 0263c2b12..9711c8671 100644
--- a/Pandoc.cabal.in
+++ b/Pandoc.cabal.in
@@ -1,5 +1,5 @@
Name: Pandoc
-Version: 0.2
+Version: 0.3
License: GPL
License-File: LICENSE
Author: John MacFarlane <jgm@berkeley.edu>
diff --git a/TODO b/TODO
index 6555d6c59..464090415 100644
--- a/TODO
+++ b/TODO
@@ -1,26 +1 @@
# TODO
-
-- create a changelog in root, with a symlink to it in debian
- (only the top entry needs the sig.)
-> pandoc (0.3) unstable; urgency=low
->
-> [ John MacFarlane ]
-> * Revised RTF writer:
-> + made default font Helvetica
-> + added \f0 to each \pard, so that font resizing works correctly
-> * Fixed handling of dashes in LaTeX writer
-> * Added iconv to output in wrappers
-> * Added osx-pkg and osx-dmg targets to Makefile
->
-> [ Recai Oktaş ]
-> * Created proper debian package
-> * Revamped build system:
-> + [describe changes in targets]
-> * Modified wrapper scripts to make them more robust.
-> + added --output option to markdown2pdf
->
-> -- Recai Oktaş <roktas@debian.org> Tue, 24 Oct 2006 07:48:30 +0300
-
-- look into warnings on pdflatex concerning ucs packages
-- change all versions to 0.3
-
diff --git a/src/Main.hs b/src/Main.hs
index ff42be094..dc5a9fde1 100644
--- a/src/Main.hs
+++ b/src/Main.hs
@@ -26,7 +26,7 @@ import Char ( toLower )
import Control.Monad ( (>>=) )
version :: String
-version = "0.2"
+version = "0.3"
-- | Association list of formats and readers.
readers :: [(String, ParserState -> String -> Pandoc)]