Skip to content
This repository has been archived by the owner on Mar 26, 2022. It is now read-only.

Commit

Permalink
Merge pull request #44 from nikolas/release-0.6.1
Browse files Browse the repository at this point in the history
Release version 0.6.1 to fix empty input bug
  • Loading branch information
nikolas committed Jan 5, 2016
2 parents 69f535b + 7fc464c commit ebf011e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.6.1 (2016-01-05)
- Fixed an IndexError exception that occurred when input string
was empty.

## 0.6.0 (2016-01-04)
- CommonMark-py now complies to the 0.23 CommonMark spec
http://spec.commonmark.org/0.23/
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Pure Python port of [jgm](https://github.com/jgm)'s [commonmark.js](https://gith

We are currently at the same development stage (actually a bit ahead because we have implemented HTML entity conversion and href URL escaping) as `commonmark.js`. Since Python versions pre-3.4 use outdated (i.e. not HTML5 spec) entity conversion, I've converted the 3.4 implementation into a single file, `entitytrans.py` which so far seems to work (all tests pass on 2.7, 3.3, 3.4, 3.5).

**Current version:** 0.6.0
**Current version:** 0.6.1

[![Build Status](https://travis-ci.org/rtfd/CommonMark-py.svg?branch=master)](https://travis-ci.org/rtfd/CommonMark-py)

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ escaping) as ``commonmark.js``. Since Python versions pre-3.4 use outdated
implementation into a single file, ``entitytrans.py`` which so far seems
to work (all tests pass on 2.7, 3.3, 3.4, and 3.5).

**Current version:** 0.6.0
**Current version:** 0.6.1

|Build Status|

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,14 @@ def run(self):
name="CommonMark",
packages=['CommonMark'],
scripts=['bin/cmark.py'],
version="0.6.0",
version="0.6.1",
license="BSD License",
description="Python parser for the CommonMark Markdown spec",
author="Bibek Kafle <[email protected]>, " +
"Roland Shoemaker <[email protected]>",
author_email="[email protected]",
maintainer="Nik Nyby",
maintainer_email="[email protected]",
url="https://github.com/rtfd/CommonMark-py",
keywords=["markup", "markdown", "commonmark"],
cmdclass={'test': Test},
Expand Down

0 comments on commit ebf011e

Please sign in to comment.