How can I see what version of the Stripe API goes with each version of this Stripe.net library?
rdeslonde opened this issue · 2 comments
Describe the bug
I can't figure out how to see what version of the Stripe API goes with each version of the Stripe.net library.
To Reproduce
Go to a version of this library and try to find the compatible stripe api version. It's not there (I don't think).
Expected behavior
You can't find the Stripe api version that corresponds with the Stripe.net versions.
Code snippets
No response
OS
Windows
.NET version
4.6.1
Library version
stripe-dotnet19.7.0
API version
19.7.0
Additional context
No response
Hi @rdeslonde ! You can view the API version your library version uses through the StripeConfiguration.ApiVersion
property defined here.
Hope this helps! Since this is behavior we already support, I'll be closing out this issue.
If what you want is to find the right version of stripe-dotnet for a given API version, the easiest is to look at the changelog here and search for the API version string itself. That would give you the first major version that introduced that API version. You can then check each major version to see if it was switched to the next one or if it was released for other breaking changes.