File tree Expand file tree Collapse file tree 3 files changed +13
-3
lines changed
Expand file tree Collapse file tree 3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ PROJECT(libucl C)
33
44SET (LIBUCL_VERSION_MAJOR 0)
55SET (LIBUCL_VERSION_MINOR 9)
6- SET (LIBUCL_VERSION_PATCH 2 )
6+ SET (LIBUCL_VERSION_PATCH 3 )
77
88SET (LIBUCL_VERSION
99 "${LIBUCL_VERSION_MAJOR} .${LIBUCL_VERSION_MINOR} .${LIBUCL_VERSION_PATCH} " )
Original file line number Diff line number Diff line change 11# Version history
22
3+ ## Libucl 0.9.3
4+
5+ - Fix invalid JSON emission when merging objects (Fixes #312 )
6+ - Fix heap-buffer-overflow in ucl_maybe_parse_number (Fixes #344 , #328 )
7+ - Fix Use-After-Free in ucl_hash_insert by ignoring duplicates in different containers (Fixes #347 )
8+ - Fix heap-buffer-overflow in ucl_parse_multiline_string
9+ - Add support of sanitizers to cmake
10+ - Fix allocator mismatches in libucl
11+ - Various other fixes and improvements
12+
313## Libucl 0.9.0
414
515* 803b588 Breaking: Try to fix streamline embedding
Original file line number Diff line number Diff line change 11m4_define ( [ maj_ver] , [ 0] )
22m4_define ( [ med_ver] , [ 9] )
3- m4_define ( [ min_ver] , [ 2 ] )
4- m4_define ( [ so_version] , [ 9:0:2 ] )
3+ m4_define ( [ min_ver] , [ 3 ] )
4+ m4_define ( [ so_version] , [ 9:0:3 ] )
55m4_define ( [ ucl_version] , [ maj_ver.med_ver.min_ver] )
66
77AC_PREREQ ( [ 2.70] )
You can’t perform that action at this time.
0 commit comments