Bump version to 0.4.0.
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 39 40 41 42 43 44 45 46 47 48 49 50 51
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c874e2d..7229fdd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,14 +4,7 @@
## Next Version (Work in Progress)
-Changes:
-
- * Parsing of tables (with `MD_FLAG_TABLES`) is now closer to the way how
- cmark-gfm parses tables as we do not require every row of the table to
- contain a pipe `|` anymore.
-
- As a consequence, paragraphs now cannot interrupt tables. A paragraph which
- follows the table has to be delimited with a blank line.
+New features:
* With `MD_FLAG_LATEXMATHSPANS`, LaTeX math spans (`$...$`) and LaTeX display
math spans (`$$...$$`) are now recognized. (Note though that the HTML
@@ -25,6 +18,15 @@ Changes:
Contributed by [Nils Blomqvist](https://github.com/niblo).
+Changes:
+
+ * Parsing of tables (with `MD_FLAG_TABLES`) is now closer to the way how
+ cmark-gfm parses tables as we do not require every row of the table to
+ contain a pipe `|` anymore.
+
+ As a consequence, paragraphs now cannot interrupt tables. A paragraph which
+ follows the table has to be delimited with a blank line.
+
Fixes:
* [#94](https://github.com/mity/md4c/issues/94):
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a5cb292..5ab1398 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,8 +3,8 @@ cmake_minimum_required(VERSION 3.4)
project(MD4C C)
set(MD_VERSION_MAJOR 0)
-set(MD_VERSION_MINOR 3)
-set(MD_VERSION_RELEASE 4)
+set(MD_VERSION_MINOR 4)
+set(MD_VERSION_RELEASE 0)
set(MD_VERSION "${MD_VERSION_MAJOR}.${MD_VERSION_MINOR}.${MD_VERSION_RELEASE}")
if(WIN32)