Skip to content

Commit

Permalink
Merge pull request #11 from webability-go/late-night
Browse files Browse the repository at this point in the history
patch v0.0.10
  • Loading branch information
metalwolf committed Apr 9, 2020
2 parents 99882be + d887687 commit d0f6067
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -20,6 +20,10 @@ TO DO:
Version Changes Control
=======================

v0.0.10 - 2020-03-08
------------------------
- Added know child "code" to event

v0.0.9 - 2020-03-08
------------------------
- Correction of event node so code is into code node.
Expand Down
2 changes: 2 additions & 0 deletions event.go
Expand Up @@ -5,6 +5,8 @@ type Event NodeDef
func NewEvent(etype string, code string) Event {

e := NewNode("event", etype)
e.RegisterKnownChildren([]string{"code"})

c := NewNode("code", "")
c.SetData(code)
e.AddChild(c)
Expand Down
2 changes: 1 addition & 1 deletion wajaf.go
Expand Up @@ -7,7 +7,7 @@
package wajaf

// VERSION is the used version nombre of the XCore library.
const VERSION = "0.0.9"
const VERSION = "0.0.10"

// LOG is the flag to activate logging on the library.
// if LOG is set to TRUE, LOG indicates to the XCore libraries to log a trace of functions called, with most important parameters.
Expand Down

0 comments on commit d0f6067

Please sign in to comment.