Skip to content

Commit 31aa36f

Browse files
committed
Prepare release 0.9.3
1 parent afb9cdb commit 31aa36f

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ PROJECT(libucl C)
33

44
SET(LIBUCL_VERSION_MAJOR 0)
55
SET(LIBUCL_VERSION_MINOR 9)
6-
SET(LIBUCL_VERSION_PATCH 2)
6+
SET(LIBUCL_VERSION_PATCH 3)
77

88
SET(LIBUCL_VERSION
99
"${LIBUCL_VERSION_MAJOR}.${LIBUCL_VERSION_MINOR}.${LIBUCL_VERSION_PATCH}")

ChangeLog.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
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

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
m4_define([maj_ver], [0])
22
m4_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])
55
m4_define([ucl_version], [maj_ver.med_ver.min_ver])
66

77
AC_PREREQ([2.70])

0 commit comments

Comments
 (0)