Skip to content

Commit eec0eeb

Browse files
committed
Bump to 0.31.2, update changelog.
1 parent 5efc2e1 commit eec0eeb

2 files changed

Lines changed: 40 additions & 1 deletion

File tree

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.14)
22

33
project(cmark
44
LANGUAGES C CXX
5-
VERSION 0.31.1)
5+
VERSION 0.31.2)
66

77
set(CMAKE_C_STANDARD 99)
88
set(CMAKE_C_STANDARD_REQUIRED YES)

changelog.txt

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
[0.31.2]
2+
3+
* Export `cmark_node_is_inline`, `cmark_node_is_block`,
4+
`cmark_node_is_leaf` [non-breaking API change].
5+
6+
* Don't append a newline character when rendering inline nodes
7+
(Samuel Williams).
8+
9+
* Fix inline source positions (#551, Nick Wellnhofer).
10+
Account for partially removed delimiter chars.
11+
12+
* Commonmark renderer: fix bug with empty item at end of list (#583).
13+
14+
* Fix email autolink rendering in latex (#595).
15+
16+
* CMake: Remove handling CMP0063 (Christophh Grüninger).
17+
Required CMake is 3.7 which automatically sets CMP0063 to NEW.
18+
19+
* Makefile: Don't depend on $(SPEC) (Nick Wellnhofer).
20+
The spec file is always present.
21+
22+
* Makefile: Clean up cmake invocations (Nick Wellnhofer).
23+
Use cmake command to build and install instead of invoking make. Also
24+
use -G option consistently. This allows to use other generators like
25+
Ninja: `make GENERATOR=Ninja`.
26+
27+
* Fix python warnings about regexp escape sequences
28+
(Azamat H. Hackimov).
29+
30+
* Update cmake_minimum_required to 3.14 (Azamat H. Hackimov).
31+
32+
* Update to Unicode 17.0 (Dmitry Atamanov).
33+
34+
* README: Make cmake instructions more portable and simple
35+
(Nick Wellnhofer). Don't assume that make is used. Don't
36+
change directories.
37+
38+
* Replace link to unmaintained Python bindings (Ofek Lev).
39+
140
[0.31.1]
241

342
* Flag root node as open in `cmark_parser_new_with_mem_into_root` (#532).

0 commit comments

Comments
 (0)