Skip to content

Commit f051835

Browse files
author
Waylan Limberg
committed
Upped version to 2.0-rc1
1 parent bfaa7e1 commit f051835

File tree

5 files changed

+32
-11
lines changed

5 files changed

+32
-11
lines changed

docs/AUTHORS

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ while procrastingating his Ph.D.
66

77
Waylan Limberg <http://achinghead.com/>, who has written most of the available
88
extensions and later was asked to join Yuri, fixing nummrious bugs, adding
9-
documentation and making general improvements to the existing codebase.
9+
documentation and making general improvements to the existing codebase,
10+
included a complete refactor of the core.
1011

1112
Artem Yunusov, who as part of a 2008 GSoC project, has refactored inline
1213
patterns, replaced the NanoDOM with ElementTree support and made various other
@@ -21,10 +22,11 @@ as he helped to integrate Markdown into Dr.Project.
2122
Other Contributors
2223
==================
2324

24-
The incomplete list of individuals below have provided patches
25-
or otherwise contributed to the project in various ways. We would like to thank
26-
everyone who has contributed to the progect in any way.
25+
The incomplete list of individuals below have provided patches or otherwise
26+
contributed to the project in various ways. We would like to thank everyone
27+
who has contributed to the progect in any way.
2728

29+
Eric Abrahamsen
2830
Jeff Balogh
2931
Sergej Chodarev
3032
Chris Clark
@@ -38,4 +40,4 @@ Neale Pickett
3840
John Szakmeister
3941
Malcolm Tredinnick
4042
Ben Wilson
41-
and many others to helped by reporting bugs
43+
and many others who helped by reporting bugs

docs/CHANGE_LOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
PYTHON MARKDOWN CHANGELOG
22
=========================
33

4+
Mar 8, 2009: Release Candidate 2.0-rc-1.
5+
6+
Feb 2009: Added support for multi-level lists to new Blockprocessors.
7+
8+
Jan 2009: Added HTML 4 output as an option (thanks Eric Abrahamsen)
9+
10+
Nov 2008: Added Definistion List ext. Replaced old core with BlockProcessors.
11+
Broken up into multiple files.
12+
13+
Oct 2008: Changed logging behavior to work better with other systems.
14+
Refactored tree tarversing. Added treap implementation, then replaced with
15+
OrderedDEict. Renamed various processors to better reflect what they actually
16+
do. Refactored footnote ext to match php Extra's output.
17+
18+
Sept 2008: Moved prettifyTree to a Postprocessor, replaced wikilink ext
19+
with wikilinks (note the s) ext (uses bracketed links instead of CamelCase)
20+
and various bug fixes.
21+
422
August 18 2008: Reorganized directory structure. Added a 'docs' dir
523
and moved all extensions into a 'markdown-extensions' package.
624
Added additional documentation and a few bug fixes. (v2.0-beta)

docs/INSTALL

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ Installing on *nix Systems
5353

5454
From the command line do the following:
5555

56-
wget http://pypi.python.org/packages/source/M/Markdown/markdown-2.0.tar.gz
57-
tar xvzf markdown-2.0.tar.gz
56+
wget http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz
57+
tar xvzf Markdown-2.0.tar.gz
5858
cd markdown-2.0/
5959
sudo python setup.py install
6060

markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
License: BSD (see docs/LICENSE for details).
4040
"""
4141

42-
version = "2.0-beta-2"
43-
version_info = (2,0,0, "beta-2")
42+
version = "2.0-rc1"
43+
version_info = (2,0,0, "rc1")
4444

4545
import re
4646
import codecs

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#!/usr/bin/env python
22

33
from distutils.core import setup
4+
from markdown import version
45

56
setup(
67
name = 'Markdown',
7-
version = '2.0-beta-2',
8+
version = version,
89
url = 'http://www.freewisdom.org/projects/python-markdown',
9-
download_url = 'http://pypi.python.org/packages/source/M/Markdown/markdown-1.7.tar.gz',
10+
download_url = 'http://pypi.python.org/packages/source/M/Markdown/Markdown-2.0.tar.gz',
1011
description = "Python implementation of Markdown.",
1112
author = "Manfred Stienstra and Yuri takhteyev",
1213
author_email = "yuri [at] freewisdom.org",

0 commit comments

Comments
 (0)