Releases: vapor-community/stripe-kit
StripeKit 7.0.1
Bug fixes.
See the CHANGELOG for more info.
StripeKit 7.0.0
This release adds support for Expandable objects and as a result requires swift 5.2
See the CHANGELOG for more info.
StripeKit 6.1.1
This release renames the package to stripe-kit
.
So in Package.swift
you'd declare your dependency like this.
Before:
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "StripeKit", package: "StripeKit"),
]),
]
After:
targets: [
.target(name: "MyTarget", dependencies: [
.product(name: "StripeKit", package: "stripe-kit"),
]),
]
StripeKit 6.1.0 💳
StripeKit 6.0.0 💳
Major release
See the changelog for more details.
StripeKit 5.1.0
Adds a new helper method hopped(to:...)
on the StripeClient
for switching event loops without having to create new client every time. (#35 )
StripeKit 5.0.1
Addresses #31
StripeKit 5.0.0
StripeKit 5.0.0 💳🎉
This release of StripeKit marks the completion of the full implementation of Stripes API.
The release also pins to the 2019-12-03 API version.
More about issues resolved with the release are here #21
StripeKit 4.0.0
This release allows initializing a StripeClient
with a preconfigured HTTPClient
and a specified EventLoop
to have internal API requests/work to be executed and have EventLoopFuture
s returned on.
let specialConfig = HTTPClient.Configuration(....)
let client = HTTPClient(specialConfig)
let stripe = StripeClient(httpClient: client, eventLoop: myEventLoop, apiKey: "sk_123")
StripeKit 3.0.2
The release adds some missing TaxID types.