Skip to content

Commit a8deff8

Browse files
authored
chore: release v1.0.0-alpha.10
1 parent 6ac346b commit a8deff8

File tree

30 files changed

+161
-89
lines changed

30 files changed

+161
-89
lines changed

Cargo.lock

Lines changed: 27 additions & 27 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ resolver = "2"
1919
exclude = ["openapi"]
2020

2121
[workspace.package]
22-
version = "1.0.0-alpha.9"
22+
version = "1.0.0-alpha.10"
2323
description = "API bindings for the Stripe HTTP API"
2424
rust-version = "1.88.0"
2525
authors = [

async-stripe-client-core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ edition.workspace = true
1717
name = "stripe_client_core"
1818

1919
[dependencies]
20-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
21-
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.9" }
20+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.10" }
21+
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.10" }
2222
serde_json.workspace = true
2323
serde.workspace = true
2424
serde_qs.workspace = true

async-stripe-parser/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ edition.workspace = true
1818
crate-type = ["cdylib"]
1919

2020
[dependencies]
21-
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-billing" }
22-
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-checkout" }
23-
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-connect" }
24-
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-core" }
25-
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-fraud" }
26-
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-issuing" }
27-
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-misc" }
28-
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-payment" }
29-
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-product" }
30-
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-shared" }
31-
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-terminal" }
32-
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-alpha.9", path = "../generated/async-stripe-treasury" }
33-
async-stripe-webhook = { version = "1.0.0-alpha.9", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
21+
async-stripe-billing = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-billing" }
22+
async-stripe-checkout = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-checkout" }
23+
async-stripe-connect = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-connect" }
24+
async-stripe-core = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-core" }
25+
async-stripe-fraud = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-fraud" }
26+
async-stripe-issuing = {features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-issuing" }
27+
async-stripe-misc = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-misc" }
28+
async-stripe-payment = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-payment" }
29+
async-stripe-product = { features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-product" }
30+
async-stripe-shared = { features = ["deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-shared" }
31+
async-stripe-terminal = {features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-terminal" }
32+
async-stripe-treasury = {features = ["full", "deserialize"], version = "1.0.0-alpha.10", path = "../generated/async-stripe-treasury" }
33+
async-stripe-webhook = { version = "1.0.0-alpha.10", path = "../async-stripe-webhook", features = ["deserialize", "serialize", "full", "detailed-errors"] }
3434
serde.workspace = true
3535
serde_json.workspace = true
3636
serde_path_to_error = "0.1.20"

async-stripe-webhook/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ categories.workspace = true
1515
name = "stripe_webhook"
1616

1717
[dependencies]
18-
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.9" }
19-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
18+
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.10" }
19+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.10" }
2020
hmac = "0.12"
2121
sha2 = "0.10"
2222
hex = "0.4"
@@ -27,14 +27,14 @@ miniserde.workspace = true
2727
serde.workspace = true
2828
serde_json = { workspace = true, optional = true }
2929

30-
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.9" }
31-
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.9" }
32-
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.9" }
33-
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.9" }
34-
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.9" }
35-
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.9" }
36-
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.9" }
37-
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.9" }
30+
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.10" }
31+
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.10" }
32+
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.10" }
33+
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.10" }
34+
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.10" }
35+
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.10" }
36+
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.10" }
37+
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.10" }
3838
serde_path_to_error = { version = "0.1.20", optional = true }
3939

4040
[dev-dependencies]

async-stripe/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ async-std = { version = "1.12.0", optional = true }
3333
surf = { version = "2.1", optional = true }
3434
http-types = { version = "2.12.0", default-features = false, optional = true }
3535

36-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
37-
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.9" }
36+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.10" }
37+
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.10" }
3838

3939
[features]
4040
default = ["default-tls"]

generated/async-stripe-billing/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [1.0.0-alpha.10](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-alpha.9...async-stripe-billing-v1.0.0-alpha.10) - 2025-12-12
9+
10+
### Other
11+
12+
- Generate latest changes from OpenApi spec
13+
814
## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-alpha.7...async-stripe-billing-v1.0.0-alpha.8) - 2025-11-26
915

1016
### Other

generated/async-stripe-billing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
2121
smol_str.workspace = true
2222
miniserde.workspace = true
2323
tracing = { version = "0.1", default-features = false }
24-
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
25-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }
24+
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.10" }
25+
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.10" }
2626

27-
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
27+
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.10" }
2828

2929

3030
[features]

generated/async-stripe-checkout/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77

8+
## [1.0.0-alpha.10](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-alpha.9...async-stripe-checkout-v1.0.0-alpha.10) - 2025-12-12
9+
10+
### Other
11+
12+
- Generate latest changes from OpenApi spec
13+
814
## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-alpha.7...async-stripe-checkout-v1.0.0-alpha.8) - 2025-11-26
915

1016
### Other

generated/async-stripe-checkout/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ serde_json = { workspace = true, optional = true }
2121
smol_str.workspace = true
2222
miniserde.workspace = true
2323
tracing = { version = "0.1", default-features = false }
24-
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.9" }
25-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.9" }
24+
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.10" }
25+
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.10" }
2626

27-
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.9" }
27+
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.10" }
2828

2929

3030
[features]

0 commit comments

Comments
 (0)