Bump version to 0.3.2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
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)