Closed augustoccesar closed 2 months ago
@arlyon with the new Rust version, Clippy started to error on:
Error: --> src/client/stripe.rs:182:44
|
182 | req.insert_header("authorization", &format!("***", self.secret_key));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: change this to: `format!("***", self.secret_key)`
That is why of the change on the stripe.rs
. Is it fine to keep on this PR or prefer the Clippy fix on a different one?
I can see CI is failing also. I am going to update MSRV and fix any outstanding lints and comment here when you can rebase :)
https://github.com/arlyon/async-stripe/pull/617 should be ready soonish
Ok! Please rebase when you have the chance
Ok! Please rebase when you have the chance
Done! ✅
New release coming soon, TY :tada:
:tada: This PR is included in version 0.40.0 :tada:
The release is available on:
v0.40.0
Your semantic-release bot :package::rocket:
Description
Currently, the
checkout_session_ext
is not being exported, which makes theRetrieveCheckoutSessionLineItems
not being able to be used.With this change, the following should now be possible:
Closes #614
Summary
Checklist
cargo make fmt