Skip to content

Commit be5c7a8

Browse files
authored
chore: release v1.0.0-alpha.9
1 parent 9a6a8f4 commit be5c7a8

File tree

20 files changed

+92
-73
lines changed

20 files changed

+92
-73
lines changed

Cargo.lock

Lines changed: 24 additions & 24 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: 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-client-core-v1.0.0-alpha.8...async-stripe-client-core-v1.0.0-alpha.9) - 2025-11-27
9+
10+
### Other
11+
12+
- make site public and add docs
13+
814
## [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
915

1016
### 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-27
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: 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-v1.0.0-alpha.8...async-stripe-v1.0.0-alpha.9) - 2025-11-27
9+
10+
### Other
11+
12+
- make site public and add docs
13+
- Add tracing instrumentation to core API calls
14+
815
## [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
916

1017
### Fixed

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.8" }
37-
async-stripe-client-core = { path = "../async-stripe-client-core", version = "1.0.0-alpha.8" }
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" }
3838

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

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.8" }
25-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
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" }
2626

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

2929

3030
[features]

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.8" }
25-
async-stripe-client-core = {path = "../../async-stripe-client-core", version = "1.0.0-alpha.8" }
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" }
2626

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

2929

3030
[features]

0 commit comments

Comments
 (0)