Skip to content

Commit 98b1f07

Browse files
committed
Update README and version for release.
1 parent 818ea43 commit 98b1f07

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,9 @@ In this case no table will have a `parent` attribute, elements will not have the
157157

158158
## History
159159

160+
### v0.6.1 2014-Sep-25
161+
+ Fixes Issue #6, adding support for hexadecimal entities (e.g. `☺`). (Thanks Leorex/Ben Bishop)
162+
160163
### v0.6 2014-Apr-18
161164
+ 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.)
162165
+ The streaming parser now supplies the namespace prefix for elements and attributes.

slaxml.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
--[=====================================================================[
2-
v0.6 Copyright © 2013-2014 Gavin Kistner <[email protected]>; MIT Licensed
2+
v0.6.1 Copyright © 2013-2014 Gavin Kistner <[email protected]>; MIT Licensed
33
See http://github.com/Phrogz/SLAXML for details.
44
--]=====================================================================]
55
local SLAXML = {
6-
VERSION = "0.6",
6+
VERSION = "0.6.1",
77
_call = {
88
pi = function(target,content)
99
print(string.format("<?%s %s?>",target,content))

0 commit comments

Comments
 (0)