Skip to content

Commit

Permalink
Removed wrong 'required' JSON attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
cmaglie committed Aug 19, 2021
1 parent 19b4dce commit db0f908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arduino/libraries/librariesindex/json.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ type indexJSON struct {
}

type indexRelease struct {
Name string `json:"name,required"`
Version *semver.Version `json:"version,required"`
Name string `json:"name"`
Version *semver.Version `json:"version"`
Author string `json:"author"`
Maintainer string `json:"maintainer"`
Sentence string `json:"sentence"`
Expand Down

0 comments on commit db0f908

Please sign in to comment.