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
460 changes: 184 additions & 276 deletions Cargo.lock

Large diffs are not rendered by default.

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.2"
version = "1.0.0-rc.3"
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.2" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.2" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.3" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.3" }
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.2", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-rc.2", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-rc.2", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-billing" }
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-checkout" }
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-connect" }
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-core" }
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-fraud" }
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-issuing" }
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-misc" }
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-payment" }
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-product" }
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-shared" }
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-terminal" }
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-rc.3", path = "../generated/async-stripe-treasury" }
async-stripe-webhook = { version = "1.0.0-rc.3", 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-types/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.3](https://github.com/arlyon/async-stripe/compare/async-stripe-types-v1.0.0-rc.2...async-stripe-types-v1.0.0-rc.3) - 2026-03-10

### Added

- implement derive eq

## [1.0.0-alpha.5](https://github.com/arlyon/async-stripe/compare/async-stripe-types-v1.0.0-alpha.4...async-stripe-types-v1.0.0-alpha.5) - 2025-10-30

### Other
Expand Down
7 changes: 7 additions & 0 deletions async-stripe-webhook/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ 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.3](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-rc.2...async-stripe-webhook-v1.0.0-rc.3) - 2026-03-10

### Other

- add reserve to webhook crate
- update openapi and add reserve crate

## [1.0.0-rc.0](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.8...async-stripe-webhook-v1.0.0-rc.0) - 2025-12-04

### Added
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.2" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.2" }
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.3" }
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.2" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-rc.2" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-rc.2" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-rc.2" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-rc.2" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-rc.2" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-rc.2" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-rc.2" }
async-stripe-reserve = { path = "../generated/async-stripe-reserve", optional = true, version = "1.0.0-rc.2" }
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-rc.3" }
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-rc.3" }
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-rc.3" }
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-rc.3" }
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-rc.3" }
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-rc.3" }
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-rc.3" }
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-rc.3" }
async-stripe-reserve = { path = "../generated/async-stripe-reserve", optional = true, version = "1.0.0-rc.3" }
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.2" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-rc.3" }
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-rc.3" }

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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-rc.0...async-stripe-billing-v1.0.0-rc.1) - 2026-02-02

### 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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-rc.0...async-stripe-checkout-v1.0.0-rc.1) - 2026-02-02

### 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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


[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.3](https://github.com/arlyon/async-stripe/compare/async-stripe-connect-v1.0.0-rc.2...async-stripe-connect-v1.0.0-rc.3) - 2026-03-10

### Other

- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-connect-v1.0.0-rc.0...async-stripe-connect-v1.0.0-rc.1) - 2026-02-02

### 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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-core-v1.0.0-rc.0...async-stripe-core-v1.0.0-rc.1) - 2026-02-02

### 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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-fraud-v1.0.0-rc.0...async-stripe-fraud-v1.0.0-rc.1) - 2026-02-02

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-fraud/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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


[features]
Expand Down
6 changes: 6 additions & 0 deletions generated/async-stripe-issuing/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.3](https://github.com/arlyon/async-stripe/compare/async-stripe-issuing-v1.0.0-rc.2...async-stripe-issuing-v1.0.0-rc.3) - 2026-03-10

### Other

- generate eq structs

## [1.0.0-alpha.10](https://github.com/arlyon/async-stripe/compare/async-stripe-issuing-v1.0.0-alpha.9...async-stripe-issuing-v1.0.0-alpha.10) - 2025-12-12

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-issuing/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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-misc-v1.0.0-rc.0...async-stripe-misc-v1.0.0-rc.1) - 2026-02-02

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-misc/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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-payment-v1.0.0-rc.0...async-stripe-payment-v1.0.0-rc.1) - 2026-02-02

### Other
Expand Down
6 changes: 3 additions & 3 deletions generated/async-stripe-payment/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.2" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.2" }
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-rc.3" }
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-rc.3" }

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


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

### Other

- update openapi and add reserve crate
- generate eq structs

## [1.0.0-rc.1](https://github.com/arlyon/async-stripe/compare/async-stripe-product-v1.0.0-rc.0...async-stripe-product-v1.0.0-rc.1) - 2026-02-02

### Other
Expand Down
Loading