Releases: panghu-huang/octocrate
Releases · panghu-huang/octocrate
v2.0.1
🎉 Features
- feat: optimizing the way of importing types (
Query
/Request
/Response
) by @panghu-huang in #36
// Before
let request = IssuesCreateCommentRequest {
// ..
};
let query = PullsListQuery::builder()
.state(PullsListQueryState::Open)
.per_page(10)
.build()
// After
let request = issues::create_comment::Request {
// ...
};
let query = pulls::list::Query::builder()
.state(pulls::list::QueryState::Open)
.per_page(10)
.build()
🔧 Fixes
- Fix installation token not impl
ExpirableToken
Full Changelog: v0.3.8...v2.0.1
v0.3.8
🎉 Features
- Add webhooks features by @panghu-huang in #23
- Make enum copiable by @panghu-huang in #28
- Expose the
reqwest/rustls-tls
feature by @dholroyd in #30
🔧 Fixes
- Webhooks and APIs can't share types fix by @panghu-huang in #27
- Parameter schema definition fix by @panghu-huang in #31
Full Changelog: v0.3.7...v0.3.8