Skip to content

Commit d467407

Browse files
committed
Release 1.0.0-alpha.0
async-stripe@1.0.0-alpha.0 async-stripe-billing@1.0.0-alpha.0 async-stripe-checkout@1.0.0-alpha.0 async-stripe-client-core@1.0.0-alpha.0 async-stripe-connect@1.0.0-alpha.0 async-stripe-core@1.0.0-alpha.0 async-stripe-fraud@1.0.0-alpha.0 async-stripe-issuing@1.0.0-alpha.0 async-stripe-misc@1.0.0-alpha.0 async-stripe-payment@1.0.0-alpha.0 async-stripe-product@1.0.0-alpha.0 async-stripe-shared@1.0.0-alpha.0 async-stripe-terminal@1.0.0-alpha.0 async-stripe-treasury@1.0.0-alpha.0 async-stripe-types@1.0.0-alpha.0 async-stripe-webhook@1.0.0-alpha.0 Generated by cargo-workspaces
1 parent 50c0743 commit d467407

File tree

5 files changed

+14
-4
lines changed

5 files changed

+14
-4
lines changed

CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,3 +83,13 @@ cargo test --features runtime-blocking
8383

8484
It is encouraged to open an issue before you create a PR as a place for pre-implementation
8585
discussion. If you're unsure about your contribution or simply want to ask a question about anything just open an issue and we'll chat.
86+
87+
## Publishing
88+
89+
Right now we publish alpha releases manually using https://crates.io/crates/cargo-workspaces#version
90+
You can version and publish atomically with:
91+
92+
```sh
93+
cargo workspaces version minor --allow-branch next
94+
cargo workspaces publish --from-git
95+
```

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 = "0.22.2"
21+
version = "1.0.0-alpha.0"
2222
description = "API bindings for the Stripe HTTP API"
2323
rust-version = "1.82.0"
2424
authors = [

async-stripe-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ deserialize = ["dep:serde_json"]
2727

2828
[dev-dependencies]
2929
serde_qs.workspace = true
30-
serde_json.workspace = true
30+
serde_json.workspace = true

examples/webhook-axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ publish = false
88
tokio = { version = "1.24.1", features = ["rt-multi-thread", "macros"] }
99
axum = { version = "0.7.4", features = ["macros"] }
1010
async-stripe-webhook = { path = "../../async-stripe-webhook", features = ["async-stripe-checkout"] }
11-
async-trait = "0.1"
11+
async-trait = "0.1"

examples/webhook-rocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ publish = false
77
[dependencies]
88
rocket = "0.5.0"
99
async-stripe-webhook = { path = "../../async-stripe-webhook", features = ["async-stripe-checkout"] }
10-
async-stripe-checkout = { path = "../../generated/async-stripe-checkout" }
10+
async-stripe-checkout = { path = "../../generated/async-stripe-checkout" }

0 commit comments

Comments
 (0)