Bump to 0.30.2, update changelog.

This commit is contained in:
John MacFarlane 2021-09-24 08:49:23 -07:00
parent 4efec3552c
commit 2f03f1db5c
2 changed files with 20 additions and 1 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.7)
project(cmark VERSION 0.30.1)
project(cmark VERSION 0.30.2)
include("FindAsan.cmake")
include(GNUInstallDirs)

View File

@ -1,3 +1,22 @@
[0.30.2]
* Fix parsing of emphasis before links (#424, Nick Wellnhofer).
Fixes a regression introduced with commit ed0a4bf.
* Update to Unicode 14.0 (data-man).
* Add `~` to safe href character set (#394, frogtile).
* Update CMakeLists.txt (Saleem Abdulrasool). Bump the minimum required
CMake to 3.7. Imperatively define output name for static library.
* Fix install paths in libcmark.pc (Sebastián Mancilla).
`CMAKE_INSTALL_<dir>` can be relative or absolute path, so it is wrong to
prefix CMAKE_INSTALL_PREFIX because if CMAKE_INSTALL_<dir> is set to an
absolute path it will result in a malformed path with two absolute paths
joined together. Instead, use `CMAKE_INSTALL_FULL_<dir>` from
GNUInstallDirs.
[0.30.1]
* Properly indent block-level contents of list items in man (#258).