Skip to content

Commit e681523

Browse files
committed
release: v1.2.4
1 parent 3af5b62 commit e681523

62 files changed

Lines changed: 142 additions & 142 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Cargo.lock

Lines changed: 7 additions & 7 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
@@ -11,7 +11,7 @@ members = [
1111
]
1212

1313
[workspace.package]
14-
version = "1.2.3"
14+
version = "1.2.4"
1515
edition = "2024"
1616
rust-version = "1.91.1"
1717
license = "MIT"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and concurrent IO. No request-per-process compromise.
1717
Suprnova 1.2 requires Rust 1.91.1 or newer.
1818

1919
```bash
20-
cargo install --git https://github.com/eas4ai/suprnova.git --tag v1.2.3 suprnova-cli
20+
cargo install --git https://github.com/eas4ai/suprnova.git --tag v1.2.4 suprnova-cli
2121
suprnova new myapp --frontend svelte
2222
cd myapp
2323
suprnova serve
@@ -207,7 +207,7 @@ suprnova workflow:work
207207
## Distribution model
208208

209209
Suprnova distributes via git, not crates.io. Generated apps depend on
210-
`suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3" }`;
210+
`suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4" }`;
211211
the CLI installs via `cargo install --git`. Adapter crates
212212
(`suprnova-payments-stripe`, `suprnova-payments-paddle`,
213213
`suprnova-web-push`) follow the same model. The tag *is* the release:

crates/suprnova-payments-paddle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
description = "Paddle reference adapter for Suprnova's generic Payments surface"
88

99
[dependencies]
10-
suprnova = { path = "../../framework", version = "1.2.3" }
10+
suprnova = { path = "../../framework", version = "1.2.4" }
1111
paddle-rust-sdk = { version = "0.18.0", default-features = false, features = ["rustls-webpki-roots"] }
1212
async-trait = "0.1"
1313
serde = { version = "1", features = ["derive"] }

crates/suprnova-payments-paddle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ For server-side capture / refunds, use `suprnova-payments-stripe` instead.
3737

3838
```toml
3939
[dependencies]
40-
suprnova-payments-paddle = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3" }
40+
suprnova-payments-paddle = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4" }
4141
```
4242

4343
## Usage

crates/suprnova-payments-stripe/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license.workspace = true
77
description = "Stripe reference adapter for Suprnova's generic Payments surface"
88

99
[dependencies]
10-
suprnova = { path = "../../framework", version = "1.2.3" }
10+
suprnova = { path = "../../framework", version = "1.2.4" }
1111
async-stripe = { version = "1.0.0-rc.5", default-features = false, features = ["rustls-tls-webpki-roots", "rustls-ring"] }
1212
async-trait = "0.1"
1313
serde = { version = "1", features = ["derive"] }

crates/suprnova-payments-stripe/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ refunds, so the full `Payment` trait is implemented (unlike Paddle - see
3030

3131
```toml
3232
[dependencies]
33-
suprnova-payments-stripe = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3" }
33+
suprnova-payments-stripe = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4" }
3434
```
3535

3636
## Usage

crates/suprnova-web-push/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on this crate directly. If you need the lower-level API:
2626

2727
```toml
2828
[dependencies]
29-
suprnova-web-push = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3" }
29+
suprnova-web-push = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4" }
3030
```
3131

3232
## Usage

framework/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ serde = { version = "1", features = ["derive"] }
2424
serde_json = { version = "1", features = ["preserve_order"] }
2525
indexmap = { version = "2", features = ["serde"] }
2626
futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }
27-
suprnova-macros = { path = "../suprnova-macros", version = "1.2.3" }
27+
suprnova-macros = { path = "../suprnova-macros", version = "1.2.4" }
2828
dotenvy = "0.15"
2929
inventory = "0.3"
3030
sea-orm = { version = "1.1", features = ["runtime-tokio-rustls", "macros"] }
@@ -164,7 +164,7 @@ sea-streamer-redis = { version = "0.5.2", features = ["runtime-tokio"] }
164164
lettre = { version = "0.11.22", default-features = false, features = ["smtp-transport", "pool", "rustls-tls", "hostname", "builder", "tokio1", "tokio1-rustls"] }
165165
tera = "1"
166166
aws-sigv4 = "1"
167-
suprnova-web-push = { version = "1.2.3", path = "../crates/suprnova-web-push", optional = true }
167+
suprnova-web-push = { version = "1.2.4", path = "../crates/suprnova-web-push", optional = true }
168168
aws-credential-types = "1.2.14"
169169
# Compatibility pin for fresh downstream resolutions: time 0.3.48 currently
170170
# triggers coherence conflicts in sea-query/aws-smithy-types on Rust 1.96.

framework/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Add suprnova to your `Cargo.toml`:
1111

1212
```toml
1313
[dependencies]
14-
suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3" }
14+
suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4" }
1515
tokio = { version = "1", features = ["full"] }
1616
```
1717

@@ -39,7 +39,7 @@ exclude filesystem, MySQL, MariaDB vector, and web-push dependencies:
3939

4040
```toml
4141
[dependencies]
42-
suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.3", default-features = false, features = [
42+
suprnova = { git = "https://github.com/eas4ai/suprnova.git", tag = "v1.2.4", default-features = false, features = [
4343
"database-sqlite",
4444
"database-postgres",
4545
"broadcasting-fanout",
@@ -97,7 +97,7 @@ async fn show_user(req: Request) -> Response {
9797
Use the suprnova CLI to scaffold new projects:
9898

9999
```bash
100-
cargo install --git https://github.com/eas4ai/suprnova.git --tag v1.2.3 suprnova-cli
100+
cargo install --git https://github.com/eas4ai/suprnova.git --tag v1.2.4 suprnova-cli
101101
suprnova new myapp
102102
```
103103

0 commit comments

Comments
 (0)