Skip to content

Commit 827a465

Browse files
authored
chore: release v1.0.0-alpha.9
1 parent 7d67190 commit 827a465

File tree

20 files changed

+112
-91
lines changed

20 files changed

+112
-91
lines changed

Cargo.lock

Lines changed: 42 additions & 42 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.8"
21+
version = "1.0.0-alpha.9"
2222
description = "API bindings for the Stripe HTTP API"
2323
rust-version = "1.88.0"
2424
authors = [

async-stripe-client-core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-alpha.8...async-stripe-client-core-v1.0.0-alpha.9) - 2025-11-30
9+
10+
### Other
11+
12+
- update readme
13+
- make site public and add docs
14+
815
## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-client-core-v1.0.0-alpha.7...async-stripe-client-core-v1.0.0-alpha.8) - 2025-11-26
916

1017
### Fixed

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.8" }
21-
async-stripe-types = { path = "../async-stripe-types", version = "1.0.0-alpha.8" }
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" }
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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.8...async-stripe-webhook-v1.0.0-alpha.9) - 2025-11-30
9+
10+
### Added
11+
12+
- add generate_test_header for webhook signature testing
13+
814
## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-webhook-v1.0.0-alpha.7...async-stripe-webhook-v1.0.0-alpha.8) - 2025-11-26
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.8" }
19-
async-stripe-shared = { path = "../generated/async-stripe-shared", version = "1.0.0-alpha.8" }
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" }
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.8" }
31-
async-stripe-checkout = { path = "../generated/async-stripe-checkout", optional = true, version = "1.0.0-alpha.8" }
32-
async-stripe-core = { path = "../generated/async-stripe-core", optional = true, version = "1.0.0-alpha.8" }
33-
async-stripe-fraud = { path = "../generated/async-stripe-fraud", optional = true, version = "1.0.0-alpha.8" }
34-
async-stripe-misc = { path = "../generated/async-stripe-misc", optional = true, version = "1.0.0-alpha.8" }
35-
async-stripe-payment = { path = "../generated/async-stripe-payment", optional = true, version = "1.0.0-alpha.8" }
36-
async-stripe-terminal = { path = "../generated/async-stripe-terminal", optional = true, version = "1.0.0-alpha.8" }
37-
async-stripe-treasury = { path = "../generated/async-stripe-treasury", optional = true, version = "1.0.0-alpha.8" }
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" }
3838

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

async-stripe/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ 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.9](https://github.com/arlyon/async-stripe/compare/async-stripe-v1.0.0-alpha.8...async-stripe-v1.0.0-alpha.9) - 2025-11-30
9+
10+
### Other
11+
12+
- update readme
13+
- make site public and add docs
14+
- Add tracing instrumentation to core API calls
15+
816
## [1.0.0-alpha.8](https://github.com/arlyon/async-stripe/compare/async-stripe-v1.0.0-alpha.7...async-stripe-v1.0.0-alpha.8) - 2025-11-26
917

1018
### Fixed

0 commit comments

Comments
 (0)