From 22530e716d50d5578f97046c8b43461009edd585 Mon Sep 17 00:00:00 2001 From: Charles Banning Date: Wed, 22 Feb 2017 13:31:42 -0700 Subject: [PATCH] add notice to docs --- doc.go | 1 + readme.md | 1 + 2 files changed, 2 insertions(+) diff --git a/doc.go b/doc.go index 770eba1..a76e2ea 100644 --- a/doc.go +++ b/doc.go @@ -11,6 +11,7 @@ mxj supplants the legacy x2j and j2x packages. If you want the old syntax, use m Note: this library was designed for processing ad hoc anonymous messages. Bulk processing large data sets may be much more efficiently performed using the encoding/xml or encoding/json packages from Go's standard library directly. Notes: + 2017.02.22: LeafNode paths can use ".N" syntax rather than "[N]" for list member indexing. 2017.02.21: github.com/clbanning/checkxml provides functions for validating XML data. 2017.02.10: SetFieldSeparator changes field separator for args in UpdateValuesForPath, ValuesFor... methods. 2017.02.06: Support XMPP stream processing - HandleXMPPStreamTag(). diff --git a/readme.md b/readme.md index b87ae39..8778815 100644 --- a/readme.md +++ b/readme.md @@ -16,6 +16,7 @@ For over a year I've wanted to refactor the XML-to-map[string]interface{} decode BenchmarkNewStructJsonBooks-4 100000 15309 ns/op

Notices

+ 2017.02.22: LeafNode paths can use ".N" syntax rather than "[N]" for list member indexing. 2017.02.21: github.com/clbanning/checkxml provides functions for validating XML data. 2017.02.10: SetFieldSeparator changes field separator for args in UpdateValuesForPath, ValuesFor... methods. 2017.02.06: Support XMPP stream processing - HandleXMPPStreamTag().