Skip to content

Commit

Permalink
Version 0.0.9 Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Mar 7, 2011
1 parent a42ad4d commit 4c218d4
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ sitegen.egg-info
*.pyc
*.orig
*~
docs/_*
2 changes: 1 addition & 1 deletion ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
CHANGES
=======

## 2011-03-07 0.0.7
## 2011-03-07 0.0.9
-------------------
* MARKDOWN_EDITOR_SETTINGS holds the extra parameters (Sergii Iavorskyi)
* Add docs to pypi
Expand Down
10 changes: 9 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ Example: `settings.py` ::
**MARKDOWN_EDITOR_SETTINGS** - holds the extra parameters set to be passed to textarea.markItUp()


Changes
=======

Make sure you`ve read the following document if you are upgrading from previous versions of scss:

http://packages.python.org/django-markdown/changes.html


Bug tracker
===========

Expand Down Expand Up @@ -111,7 +119,7 @@ Markitup_:


.. _GNU lesser general public license: http://www.gnu.org/copyleft/lesser.html
.. _pypi: http://packages.python.org/scss/
.. _pypi: http://packages.python.org/django-markdown/
.. _github: https://github.com/klen/python-scss
.. _klen: https://github.com/klen
.. _yavorskiy: https://github.com/yavorskiy
4 changes: 2 additions & 2 deletions django_markdown/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
VERSION_INFO = (0, 0, 7)
VERSION_INFO = (0, 0, 9)

__version__ = VERSION = '0.0.7'
__version__ = VERSION = '.'.join(map(str, VERSION_INFO ))
__project__ = PROJECT = 'django-markdown'
__author__ = AUTHOR = "Kirill Klenov <horneds@gmail.com>"
__license__ = LICENSE = "GNU LGPL"

0 comments on commit 4c218d4

Please sign in to comment.