Release v2.0.0
Changed
- Breaking:
ok(),created(), andlisted()now returnHandlerResponse<T>,CreatedResponse<T>, andHandlerListResponse<T>respectively instead of bare tuples. Handlers that previously wroteOk(ok(value))now writeok(value). Callers that destructured the return value directly must add.unwrap()or handle theResult.