Skip to content
Open
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
36 changes: 18 additions & 18 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.8"
version = "1.0.0-rc.9"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Drop the empty rc.9 release

When this release PR is merged and published, the workspace version is advanced to rc.9 even though the diff contains only version/dependency bumps and changelog entries whose sole payload is the previous release v1.0.0-rc.8 commit. Because crates.io versions are immutable, cutting this publishes an empty rc.9 and risks continuing the release-plz paperwork loop rather than shipping a real user-facing change; close or regenerate this release after an actual change is present.

Useful? React with πŸ‘Β / πŸ‘Ž.

description = "API bindings for the Stripe HTTP API"
rust-version = "1.88.0"
authors = [
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.8" }
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.9" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.9" }
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.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"] }
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-rc.9", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-rc.9", 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
6 changes: 6 additions & 0 deletions async-stripe-webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-rc.8...async-stripe-webhook-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
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.8" }
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.9" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.9" }
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.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" }
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-rc.9" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-rc.9" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-rc.9" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-rc.9" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-rc.9" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-rc.9" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-rc.9" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-rc.9" }
async-stripe-reserve = { path = "../generated/async-stripe-reserve", optional = true, version = "1.0.0-rc.9" }
serde_path_to_error = { version = "0.1.20", optional = true }

[dev-dependencies]
Expand Down
6 changes: 6 additions & 0 deletions async-stripe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-v1.0.0-rc.8...async-stripe-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
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.8" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.8" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.9" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.9" }

[features]
default = ["default-tls"]
Expand Down
6 changes: 6 additions & 0 deletions generated/async-stripe-billing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-rc.8...async-stripe-billing-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-billing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.9" }

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


[features]
Expand Down
6 changes: 6 additions & 0 deletions generated/async-stripe-checkout/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-rc.8...async-stripe-checkout-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-checkout/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.9" }

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


[features]
Expand Down
6 changes: 6 additions & 0 deletions generated/async-stripe-connect/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-connect-v1.0.0-rc.8...async-stripe-connect-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-connect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.9" }

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


[features]
Expand Down
6 changes: 6 additions & 0 deletions generated/async-stripe-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-core-v1.0.0-rc.8...async-stripe-core-v1.0.0-rc.9) - 2026-08-05

### Other

- release v1.0.0-rc.8

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

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
smol_str.workspace = true
miniserde.workspace = true
tracing = { version = "0.1", default-features = false }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.8" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.8" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.9" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.9" }

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


[features]
Expand Down
Loading
Loading