Welcome to little lamb

Code » md4c » commit a6b3721

Bump version to 0.4.0.

author Martin Mitas
2019-11-04 14:30:17 UTC
committer Martin Mitas
2019-11-04 14:30:17 UTC
parent e336e6404f9feff7276310fc4aa97f0367f55d9a

Bump version to 0.4.0.

CHANGELOG.md +10 -8
CMakeLists.txt +2 -2

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)