github fatih/gomodifytags v1.13.0

latest releases: v1.17.0, v1.16.0, v1.15.0...
3 years ago

This release includes the changes from the PR: #64 gomodifytags handles now the following cases:

  • anonymous structs as function parameters
func test(arg struct {
 	Field int `json:"field"`
 }) {
 }
  • "pointer to struct" type declaration
var x *struct {
 	Field int `json:"field"`
 }
  • "array of struct" type declaration
var x []struct {
 	Field int
 }

and nested variants : "array of pointers to array of structs".

Don't miss a new gomodifytags release

NewReleases is sending notifications on new releases.