Skip to content

Releases: shoobyban/json5

v1.1

11 Mar 00:15

Choose a tag to compare

Adding better compatibility with encoding/json so it can be drop-in replaced

v1.0

17 Feb 20:09

Choose a tag to compare

Let's call this v1.0, I've been using this internally and got to the point I have most of the JSON5 features and edge cases handled, with quite ok test coverage. Still works with TinyGo, so I'm happy with it. I hope you will be as well. Here, my most informal release note ever! (Shall I use AI next time?)

v0.3

16 Sep 21:54

Choose a tag to compare

Current interface

Marshal(value interface{}) (string, error)
MarshalIndent(value interface{}, indent string) (string, error)
Unmarshal(json5 string) (interface{}, error)
Tokenize(string) []Token

v0.2

16 Sep 21:43

Choose a tag to compare

UnMarshal(json5 string) (interface{}, error)
Marshal(value interface{}, indent string) (string, error)

v0.1

16 Sep 21:21

Choose a tag to compare

Initial release just to have version numbers.