Skip to content

Commit a8e3986

Browse files
authored
chore: release v1.0.0-alpha.6
1 parent 2b5c6ed commit a8e3986

File tree

29 files changed

+139
-67
lines changed

29 files changed

+139
-67
lines changed

Cargo.lock

Lines changed: 18 additions & 18 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
@@ -18,7 +18,7 @@ resolver = "2"
1818
exclude = ["openapi"]
1919

2020
[workspace.package]
21-
version = "1.0.0-alpha.5"
21+
version = "1.0.0-alpha.6"
2222
description = "API bindings for the Stripe HTTP API"
2323
rust-version = "1.88.0"
2424
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.5" }
21-
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.5" }
20+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.6" }
21+
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.6" }
2222
serde_json.workspace = true
2323
serde.workspace = true
2424
serde_qs.workspace = true

async-stripe-webhook/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.6](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.5...async-stripe-webhook-v1.0.0-alpha.6) - 2025-10-31
9+
10+
### Other
11+
12+
- Generate latest changes from OpenApi spec
13+
814
## [1.0.0-alpha.5](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.4...async-stripe-webhook-v1.0.0-alpha.5) - 2025-10-30
915

1016
### Fixed

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.5" }
19-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.5" }
18+
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.6" }
19+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.6" }
2020
hmac = "0.12"
2121
sha2 = "0.10"
2222
hex = "0.4"
@@ -26,14 +26,14 @@ miniserde.workspace = true
2626
serde.workspace = true
2727
serde_json = { workspace = true, optional = true }
2828

29-
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.5" }
30-
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.5" }
31-
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.5" }
32-
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.5" }
33-
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.5" }
34-
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.5" }
35-
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.5" }
36-
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.5" }
29+
async-stripe-billing = { path = "../generated/async-stripe-billing", optional = true, version = "1.0.0-alpha.6" }
30+
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.6" }
31+
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.6" }
32+
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.6" }
33+
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.6" }
34+
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.6" }
35+
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.6" }
36+
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.6" }
3737

3838
[dev-dependencies]
3939
serde_json.workspace = true

async-stripe/Cargo.toml

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

35-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.5" }
36-
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.5" }
35+
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.6" }
36+
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.6" }
3737

3838
[features]
3939
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.6](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-alpha.5...async-stripe-billing-v1.0.0-alpha.6) - 2025-10-31
9+
10+
### Other
11+
12+
- Generate latest changes from OpenApi spec
13+
814
## [1.0.0-alpha.5](https://github.com/arlyon/async-stripe/compare/async-stripe-billing-v1.0.0-alpha.4...async-stripe-billing-v1.0.0-alpha.5) - 2025-10-30
915

1016
### Other

generated/async-stripe-billing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ serde.workspace = true
2020
serde_json = { workspace = true, optional = true }
2121
smol_str.workspace = true
2222
miniserde.workspace = true
23-
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.5" }
24-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.5" }
23+
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.6" }
24+
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.6" }
2525

26-
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.5" }
26+
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.6" }
2727

2828

2929
[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.6](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-alpha.5...async-stripe-checkout-v1.0.0-alpha.6) - 2025-10-31
9+
10+
### Other
11+
12+
- Generate latest changes from OpenApi spec
13+
814
## [1.0.0-alpha.5](https://github.com/arlyon/async-stripe/compare/async-stripe-checkout-v1.0.0-alpha.4...async-stripe-checkout-v1.0.0-alpha.5) - 2025-10-30
915

1016
### Other

generated/async-stripe-checkout/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ serde.workspace = true
2020
serde_json = { workspace = true, optional = true }
2121
smol_str.workspace = true
2222
miniserde.workspace = true
23-
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.5" }
24-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.5" }
23+
async-stripe-types = {path = "../../async-stripe-types", version = "1.0.0-alpha.6" }
24+
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.6" }
2525

26-
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.5" }
26+
async-stripe-shared = {path = "../../generated/async-stripe-shared", version = "1.0.0-alpha.6" }
2727

2828

2929
[features]

0 commit comments

Comments
 (0)