Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 34 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resolver = "2"
exclude = ["openapi"]

[workspace.package]
version = "1.0.0-rc.7"
version = "1.0.0-rc.8"
description = "API bindings for the Stripe HTTP API"
rust-version = "1.88.0"
authors = [
Expand Down
10 changes: 10 additions & 0 deletions async-stripe-client-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [1.0.0-rc.8](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-rc.7...async-stripe-client-core-v1.0.0-rc.8) - 2026-08-05

### Fixed

- *(client)* skip initial exponential backoff delay

### Other

- Merge pull request #946 from arlyon/fix/943-exponential-backoff-initial-delay

## [1.0.0-rc.6](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-rc.5...async-stripe-client-core-v1.0.0-rc.6) - 2026-05-27

### Added
Expand Down
4 changes: 2 additions & 2 deletions async-stripe-client-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ edition.workspace = true
name = "stripe_client_core"

[dependencies]
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.7" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.7" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.8" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.8" }
serde_json.workspace = true
serde.workspace = true
serde_qs.workspace = true
Expand Down
26 changes: 13 additions & 13 deletions async-stripe-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ edition.workspace = true
crate-type = ["cdylib"]

[dependencies]
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-rc.7", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-rc.7", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-rc.8", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-rc.8", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
serde.workspace = true
serde_json.workspace = true
serde_path_to_error = "0.1.20"
Expand Down
22 changes: 11 additions & 11 deletions async-stripe-webhook/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ categories.workspace = true
name = "stripe_webhook"

[dependencies]
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.7" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.7" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.8" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.8" }
hmac = "0.12"
sha2 = "0.10"
hex = "0.4"
Expand All @@ -27,15 +27,15 @@ miniserde.workspace = true
serde.workspace = true
serde_json = { workspace = true, optional = true }

async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-rc.7" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-rc.7" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-rc.7" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-rc.7" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-rc.7" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-rc.7" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-rc.7" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-rc.7" }
async-stripe-reserve = { path = "../generated/async-stripe-reserve", optional = true, version = "1.0.0-rc.7" }
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-rc.8" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-rc.8" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-rc.8" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-rc.8" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-rc.8" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-rc.8" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-rc.8" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-rc.8" }
async-stripe-reserve = { path = "../generated/async-stripe-reserve", optional = true, version = "1.0.0-rc.8" }
serde_path_to_error = { version = "0.1.20", optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions async-stripe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ async-std = { version = "1.12.0", optional = true }
surf = { version = "2.1", optional = true }
http-types = { version = "2.12.0", default-features = false, optional = true }

async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.7" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.7" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.8" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.8" }

[features]
default = ["default-tls"]
Expand Down
Loading
Loading