Skip to content

v2.0.1

Latest

Choose a tag to compare

@tuan78 tuan78 released this 29 Mar 10:02

Bug Fixes

  • Fixed module path in go.mod to comply with Go's major version suffix requirement. The module path is now correctly set to github.com/tuan78/jsonconv/v2 and all internal import paths have been updated accordingly.

Migration from v2.0.0

v2.0.0 was published with an incorrect module path (github.com/tuan78/jsonconv instead of github.com/tuan78/jsonconv/v2) and has been retracted. Users on v2.0.0 should upgrade immediately:

Update your import paths:

// Before (v2.0.0 — broken)
import "github.com/tuan78/jsonconv"

// After (v2.0.1)
import "github.com/tuan78/jsonconv/v2"

Full Changelog: v2.0.0...v2.0.1