diff --git a/README.md b/README.md index 1e57a49..44dbd7a 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,9 @@ In this case no table will have a `parent` attribute, elements will not have the ## History +### v0.6.1 2014-Sep-25 ++ Fixes Issue #6, adding support for hexadecimal entities (e.g. `☺`). (Thanks Leorex/Ben Bishop) + ### v0.6 2014-Apr-18 + Fixes Issue #5 (and more): Namespace prefixes defined on element are now properly applied to the element itself and any attributes using them when the definitions appear later in source than the prefix usage. (Thanks Oliver Kroth.) + The streaming parser now supplies the namespace prefix for elements and attributes. diff --git a/slaxml.lua b/slaxml.lua index a3a560b..7fa26d2 100644 --- a/slaxml.lua +++ b/slaxml.lua @@ -1,9 +1,9 @@ --[=====================================================================[ -v0.6 Copyright © 2013-2014 Gavin Kistner ; MIT Licensed +v0.6.1 Copyright © 2013-2014 Gavin Kistner ; MIT Licensed See http://github.com/Phrogz/SLAXML for details. --]=====================================================================] local SLAXML = { - VERSION = "0.6", + VERSION = "0.6.1", _call = { pi = function(target,content) print(string.format("",target,content))