From f649003ec8db28a6dbaf1a92443365649adcb04f Mon Sep 17 00:00:00 2001 From: Ashe Connor Date: Tue, 21 Aug 2018 12:01:31 +1000 Subject: [PATCH] 0.28.3.gfm.15 --- CMakeLists.txt | 2 +- changelog.txt | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3224b29a9..c5f184fe5 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -19,7 +19,7 @@ set(PROJECT_NAME "cmark-gfm") set(PROJECT_VERSION_MAJOR 0) set(PROJECT_VERSION_MINOR 28) set(PROJECT_VERSION_PATCH 3) -set(PROJECT_VERSION_GFM 14) +set(PROJECT_VERSION_GFM 15) set(PROJECT_VERSION ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}.gfm.${PROJECT_VERSION_GFM} ) option(CMARK_TESTS "Build cmark-gfm tests and enable testing" ON) diff --git a/changelog.txt b/changelog.txt index e7a7bc01a..dc92205bb 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,10 @@ +[0.28.3.gfm.15] + + * Escape non-strikethrough tildes (~) in commonmark output (John MacFarlane, #106). + * Cosmetic fix to table HTML output (John MacFarlane, #105). + * Use two tildes for strikethrough CommonMark output (John MacFarlane, #104). + * Normalised header and define names (#109). + [0.28.3.gfm.14] * Added a plaintext renderer for strikethrough nodes.