Release 2.2.1
What was fixed?
- Added additional notes to
RegisterCustomTypeFuncto indicate that if a struct type is registered aurl.Valuemust exist explicitly for the struct and not just the fields.
eg. url.Values{"User":"Name%3Djoeybloggs"} will call the custom type function with User as the type, however url.Values{"User.Name":"joeybloggs"} will not.
Fixes #14