From 743ecdc1998afd996e5894b35d6b6ba8993fa43f Mon Sep 17 00:00:00 2001 From: Alex Budovski Date: Sun, 28 Feb 2016 10:35:44 -0800 Subject: [PATCH] Update releasenotes with bugfix. --- releasenotes.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/releasenotes.md b/releasenotes.md index 43a423e..83f6106 100644 --- a/releasenotes.md +++ b/releasenotes.md @@ -1,7 +1,13 @@ 1.0.5 (beta) ------------ -* Add `dbgscript.create_typed_pointer` API. +* Add `dbgscript.create_typed_pointer` API. Acts like `create_typed_object` but + returns a pointer to the object instead. This makes buffer traversal possible + from an explicit buffer start address and element type. + +* Fix: `TypedObject.value` API now acts consistently across providers for the + `char` type. Previously, Python would return a `str` but Ruby/Lua would return + an integer type. 1.0.4 (beta) ------------