Skip to content

Release v2.0.0

Choose a tag to compare

@github-actions github-actions released this 24 Apr 06:35
· 63 commits to main since this release
ee9a0cd

Changed

  • Breaking: ok(), created(), and listed() now return HandlerResponse<T>, CreatedResponse<T>, and HandlerListResponse<T> respectively instead of bare tuples. Handlers that previously wrote Ok(ok(value)) now write ok(value). Callers that destructured the return value directly must add .unwrap() or handle the Result.