Skip to content
This repository was archived by the owner on May 29, 2026. It is now read-only.

Releases: readthedocs/commonmark.py

0.9.2

Choose a tag to compare

@nikolas nikolas released this 29 May 13:10
  • Deprecate package. Use markdown-it-py instead.
  • Remove testing on python 3.4.

0.9.1

Choose a tag to compare

@nikolas nikolas released this 04 Oct 15:37
7e02d13
  • commonmark.py now requires future >= 0.14.0 on Python 2, for uniform builtins imports in Python 2/3
  • Added CHANGELOG.md to the manifest file.

0.9.0

Choose a tag to compare

@nikolas nikolas released this 02 May 19:00

The CommonMark spec has been updated to 0.29. Completed by @iamahuman.

0.8.1

Choose a tag to compare

@nikolas nikolas released this 06 Sep 17:29

Removed CommonMark symlink. So, as of this version, you need to replace all instances of CommonMark with commonmark in your code.

0.8.0

Choose a tag to compare

@nikolas nikolas released this 03 Sep 17:21
8b99773
  • Added the Node.normalize() method. (from @lez)
  • Renamed package name to commonmark for PEP8 compliance. You can now do import commonmark as well as import CommonMark. Closes #60
  • Added testing on Python 3.7.

0.7.5

Choose a tag to compare

@nikolas nikolas released this 13 Mar 17:56
8a5da8a
  • Fixed smart dashes bug in Python 3 (from @alvra)

0.7.4

Choose a tag to compare

@nikolas nikolas released this 05 Aug 17:35

The CommonMark spec has been updated to 0.28.

0.7.3

Choose a tag to compare

@nikolas nikolas released this 05 Jan 18:50

The CommonMark spec has been updated to 0.27.

0.7.2

Choose a tag to compare

@nikolas nikolas released this 10 Aug 15:53
  • Removed outdated files from distributed packages, reported by @hyperknot

0.7.1

Choose a tag to compare

@nikolas nikolas released this 20 Jul 20:09
  • Updated CommonMark spec to 0.26.
  • Fixed JSON output invoked by cmark -aj somefile.md, reported by @rplCloud
  • Fixed a bug with dumpAST() on ordered lists, from @rflynn