File tree Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Expand file tree Collapse file tree 5 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -83,3 +83,13 @@ cargo test --features runtime-blocking
83
83
84
84
It is encouraged to open an issue before you create a PR as a place for pre-implementation
85
85
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
+ ```
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ resolver = "2"
18
18
exclude = [" openapi" ]
19
19
20
20
[workspace .package ]
21
- version = " 0.22.2 "
21
+ version = " 1.0.0-alpha.0 "
22
22
description = " API bindings for the Stripe HTTP API"
23
23
rust-version = " 1.82.0"
24
24
authors = [
Original file line number Diff line number Diff line change @@ -27,4 +27,4 @@ deserialize = ["dep:serde_json"]
27
27
28
28
[dev-dependencies ]
29
29
serde_qs.workspace = true
30
- serde_json.workspace = true
30
+ serde_json.workspace = true
Original file line number Diff line number Diff line change @@ -8,4 +8,4 @@ publish = false
8
8
tokio = { version = " 1.24.1" , features = [" rt-multi-thread" , " macros" ] }
9
9
axum = { version = " 0.7.4" , features = [" macros" ] }
10
10
async-stripe-webhook = { path = " ../../async-stripe-webhook" , features = [" async-stripe-checkout" ] }
11
- async-trait = " 0.1"
11
+ async-trait = " 0.1"
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ publish = false
7
7
[dependencies ]
8
8
rocket = " 0.5.0"
9
9
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" }
You can’t perform that action at this time.
0 commit comments