Skip to content

Commit 0375121

Browse files
committed
Update README for latest beta info and bump next snapshot version
1 parent 1153cab commit 0375121

2 files changed

Lines changed: 28 additions & 4 deletions

File tree

README.md

Lines changed: 27 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
- **⚡ Instant Devnet Creation** - Launch a complete Cardano network in seconds
2121
- **🎛️ Flexible Configuration** - Customize block times, epochs, eras, and network parameters
22+
- **🧪 PV11 / Cardano Node 11.0.1 Support** - Beta builds are available for PV11 hard fork compatible devnets
2223
- **🔄 Rollback Testing** - Advanced rollback simulation for robust application testing *(New in v0.11.0-beta1)*
2324
- **⏱️ Sub-second Block Times** - Support for ultra-fast development with sub-second block times. e.g; 100ms, 200ms *(New in v0.11.0-beta1)*
2425
- **🌐 Multi-node Support** - Enable multiple nodes specifically for rollback testing scenarios
@@ -71,9 +72,15 @@ When `--enable-multi-node` is used, DevKit creates a 3-node cluster for rollback
7172

7273
## 📋 Current Releases
7374

74-
🚀 **Latest Stable Release**: **[v0.10.6](https://github.com/bloxbean/yaci-devkit/releases/tag/v0.10.6)**
75+
Use the release that matches the Cardano node / protocol version you want to test.
7576

76-
🧪 **Latest Beta Release**: **[v0.11.0-beta1](https://github.com/bloxbean/yaci-devkit/releases/tag/v0.11.0-beta1)**
77+
| DevKit release | Cardano node | Status | Recommended use |
78+
|---|---:|---|---|
79+
| [v0.10.6](https://github.com/bloxbean/yaci-devkit/releases/tag/v0.10.6) | `10.1.4` | Stable | Default stable development setup |
80+
| [v0.11.0-beta1](https://github.com/bloxbean/yaci-devkit/releases/tag/v0.11.0-beta1) | `10.5.0` | Beta | PV10 or earlier Cardano protocol testing |
81+
| [v0.12.0-beta5](https://github.com/bloxbean/yaci-devkit/releases/tag/v0.12.0-beta5) | `11.0.1` | Beta | PV11 hard fork / Cardano node 11.0.1 testing |
82+
83+
For PV11 hard fork compatible local devnets, use the PV11 beta release from this table or a newer beta release.
7784

7885
## 📦 Components
7986

@@ -106,6 +113,8 @@ Yaci DevKit offers multiple distribution options to fit your development workflo
106113

107114
Download and unzip the latest docker distribution.
108115

116+
For protocol-specific testing, choose the Docker ZIP from the release compatibility table above.
117+
109118
```bash
110119
#
111120
# Start DevKit
@@ -115,6 +124,8 @@ Download and unzip the latest docker distribution.
115124
#### Option 2: Yaci CLI Zip Distribution (Non-Docker)
116125
Download and unzip the latest Yaci CLI distribution.
117126

127+
For protocol-specific testing, choose the CLI ZIP from the release compatibility table above.
128+
118129
```bash
119130
# Start Yaci CLI and download components
120131
./yaci-cli
@@ -123,13 +134,26 @@ Download and unzip the latest Yaci CLI distribution.
123134
#### Option 3: NPM Distribution (CI/CD Ready)
124135
🚀 **Perfect for CI/CD pipelines and automated testing:**
125136
```bash
126-
# Global installation
137+
# Latest stable
127138
npm install -g @bloxbean/yaci-devkit
139+
140+
# Latest beta
141+
npm install -g @bloxbean/yaci-devkit@beta
142+
143+
# Latest preview
144+
npm install -g @bloxbean/yaci-devkit@preview
145+
```
146+
147+
Then start DevKit:
148+
149+
```bash
128150
yaci-devkit up --enable-yaci-store
129151
or
130152
yaci-devkit up --enable-kupomios
131153
```
132154

155+
Use `@beta` for the latest beta release and `@preview` for the latest preview release. To lock CI to an exact release, install with an explicit version from the compatibility table.
156+
133157
**CI Integration Examples:**
134158
-**GitHub Actions** - Automated testing with DevKit
135159

config/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
tag=0.12.0-beta5
1+
tag=0.12.0-beta6-SNAPSHOT
22
revision=

0 commit comments

Comments
 (0)