author | Martin Mitas
<mity@morous.org> 2019-04-08 17:56:23 UTC |
committer | Martin Mitas
<mity@morous.org> 2019-04-08 17:56:23 UTC |
parent | 29dfdd91209a0739e94e487eb98881eb1afa9a03 |
CHANGELOG.md | +4 | -4 |
CMakeLists.txt | +1 | -1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md index 305a27f..2357568 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,16 +2,16 @@ # MD4C Change Log -## Next Version (Work in Progress) +## Version 0.3.2 Changes: * Changes mandated by CommonMark specification 0.29. Most importantly, the white-space trimming rules for code spans have changed. At most one space/newline is trimmed from beginning/end of the code span - (if the codespan contains some non-space contents, and if it begins and ends - with space at the same time). In all other cases the spaces in the code span - are now left intact. + (if the code span contains some non-space contents, and if it begins and + ends with space at the same time). In all other cases the spaces in the code + span are now left intact. Other changes in behavior are in corner cases only. Refer to [CommonMark 0.29 notes](https://github.com/commonmark/commonmark-spec/releases/tag/0.29) diff --git a/CMakeLists.txt b/CMakeLists.txt index dad9c90..12674d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ project(MD4C C) set(MD_VERSION_MAJOR 0) set(MD_VERSION_MINOR 3) -set(MD_VERSION_RELEASE 1) +set(MD_VERSION_RELEASE 2) set(MD_VERSION "${MD_VERSION_MAJOR}.${MD_VERSION_MINOR}.${MD_VERSION_RELEASE}") if(WIN32)