ChimeraCoder / gojson

Automatically generate Go (golang) struct definitions from example JSON
GNU General Public License v3.0
2.67k stars 207 forks source link

Should we add a new release? #70

Open mnhkahn opened 6 years ago

mnhkahn commented 6 years ago

The newest released was released in last year, but the master code update in few months.

If we use go1.11, we can only use v1.0.0 version of code.

For example:

version: v1.0.1

func Generate(input io.Reader, parser Parser, structName, pkgName string, tags []string, subStruct bool) ([]byte, error) {

version: master

func Generate(input io.Reader, parser Parser, structName, pkgName string, tags []string, subStruct bool, convertFloats bool) ([]byte, error) {

Master version add parameter convertFloats.