Changed version numbers to 0.3.

git-svn-id: https://pandoc.googlecode.com/svn/trunk@66 788f1e2b-df1e-0410-8736-df70ead52e1b
This commit is contained in:
fiddlosopher 2006-11-01 22:49:07 +00:00
parent 836ba8694d
commit dd297dda0a
3 changed files with 2 additions and 27 deletions

View file

@ -1,5 +1,5 @@
Name: Pandoc
Version: 0.2
Version: 0.3
License: GPL
License-File: LICENSE
Author: John MacFarlane <jgm@berkeley.edu>

25
TODO
View file

@ -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

View file

@ -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)]