Skip to content

Commit 4c4e424

Browse files
committed
Release 0.3.3
balius@0.3.3 balius-macros@0.3.3 balius-runtime@0.3.3 balius-sdk@0.3.3
1 parent 8d6b92a commit 4c4e424

File tree

9 files changed

+34
-22
lines changed

9 files changed

+34
-22
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

balius-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "balius-macros"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

66
description = "SDK for building Headless dApps on UTxO-based blockchains"

balius-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "balius-runtime"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

66
description = "Runtime for run Headless dApps on UTxO-based blockchains"

balius-sdk/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
[package]
22
name = "balius-sdk"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

66
description = "SDK for building Headless dApps on UTxO-based blockchains"
77
license = "Apache-2.0"
88
repository = "https://github.com/txpipe/balius"
9+
readme = "README.md"
910

1011
[dependencies]
1112
utxorpc-spec = { version = "0.16.0", features = ["ledgers"], default-features = false }
12-
balius-macros = { version = "0.3.0", path = "../balius-macros" }
13+
balius-macros = { version = "0.3.3", path = "../balius-macros" }
1314
hex = "0.4.3"
1415
pallas-addresses = { version = "0.32.0" }
1516
pallas-codec = { version = "0.32.0" }

balius-sdk/README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Balius SDK
2+
3+
Balius SDK is a framework for building Headless dApps on UTxO-based blockchains.
4+
5+
## Usage
6+
7+
Add this to your `Cargo.toml`:
8+
9+
```toml
10+
[dependencies]
11+
balius-sdk = "0.3.3"
12+
```

balius/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "balius"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55

66
description = "CLI for building Headless dApps on UTxO-based blockchains"
@@ -14,7 +14,7 @@ keywords = ["blockchain", "dapp", "sdk", "utxo", "cardano"]
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
balius-runtime = { version = "0.3.2", path = "../balius-runtime" }
17+
balius-runtime = { version = "0.3.3", path = "../balius-runtime" }
1818
miette = { version = "7.2.0", features = ["fancy"] }
1919
tokio = { version = "1.41.0", features = ["rt-multi-thread", "signal"] }
2020
tokio-util = "0.7.12"

balius/README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# Balius
22

3-
Balius is a framework for building Headless dApps on UTxO-based blockchains.
3+
Balius is a cargo plugin for building Headless dApps on UTxO-based blockchains.
44

5-
## Usage
5+
## How to use it
66

7-
Add this to your `Cargo.toml`:
7+
Balius includes a suite of development tools to streamline your workflow:
88

9-
```toml
10-
[dependencies]
11-
balius = "0.1.0"
12-
```
9+
- **cargo balius init**: Create new Balius projects
10+
- **cargo balius build**: Compile to WebAssembly components
11+
- **cargo balius test**: Test your dApp locally with a development server

balius/src/bin/command/templates/cargo.toml.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.1"
44
edition = "2021"
55

66
[dependencies]
7-
balius-sdk = "0.3.2"
7+
balius-sdk = "0.3.3"
88
serde = { version = "1.0.204", features = ["derive"] }
99

1010
[lib]

baliusd/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "baliusd"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55
publish = false
66

@@ -14,7 +14,7 @@ exclude = [
1414
]
1515

1616
[dependencies]
17-
balius-runtime = { version = "0.3.2", path = "../balius-runtime" }
17+
balius-runtime = { version = "0.3.3", path = "../balius-runtime" }
1818
gasket = { version = "0.8.0", features = ["derive"] }
1919
miette = { version = "7.2.0", features = ["fancy"] }
2020
serde = { version = "1.0.213", features = ["derive"] }
@@ -28,4 +28,4 @@ tracing-subscriber = "0.3.18"
2828
config = { version = "0.13.3", default-features = false, features = ["toml", "json"] }
2929

3030
[package.metadata.release]
31-
release = false
31+
release = false

0 commit comments

Comments
 (0)