v0.12.3
Simplify Enums from JSONMarshaler to TextMarshaler interface (#29) * Simplify Enums from JSONMarshaler to TextMarshaler interface Compared to JSONMarshaler interface, this removes: 1. an extra bytes.NewBufferString() buffer during the marshaling 2. an extra json.Unmarshal() call during the unmarshaling 3. need for "bytes" import in the server-only code * Regenerate examples