arlyon/async-stripe

Will there be more releases to crates.io?

Closed this issue · 4 comments

Is your feature request related to a problem? Please describe.

Hi there, I noticed the repository on crates.io for this package hasn't been updated in a while, while the code in git has -- are there plans to continue releasing new version to crates.io?

Describe the solution you'd like

No response

Describe alternatives you've considered

No response

Additional context

No response

Hi! I there are a few things open issues I've been meaning to fix for a good while now but life has been busy recently. I will see if I can get something like semantic release automations working so that new releases happen automatically when PRs are merged. Thank you for the suggestion!

Thanks @arlyon -- this will really help as I'd like to use some of the Stripe API options that aren't available in the current release of async-stripe. In the meantime, would you say the following is a reasonable way to import the client?

async-stripe = { git = "https://github.com/arlyon/async-stripe.git", rev = "204d56d074f77adbb16fa4ec088c85a4a73acfc6", default-features = false, features = ["runtime-tokio-hyper", "checkout", "webhook-events", "connect"] }

I actually released a new version yesterday, 0.15.1. I'm pretty sure that automated releases are set up too(just have one more thing that I am testing in this PR #324).

So you should be able to use

async-stripe = {version = "0.15", default-features = false, features = ["runtime-tokio-hyper", "checkout", "webhook-events", "connect"] }

Let me know if that is not the case :)

Awesome, thank you!