Skip to content

Commit

Permalink
Update README and version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
Phrogz committed Sep 26, 2014
1 parent 818ea43 commit 98b1f07
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions slaxml.lua
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
--[=====================================================================[
v0.6 Copyright © 2013-2014 Gavin Kistner <[email protected]>; MIT Licensed
v0.6.1 Copyright © 2013-2014 Gavin Kistner <[email protected]>; 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("<?%s %s?>",target,content))
Expand Down

0 comments on commit 98b1f07

Please sign in to comment.