Skip to content

Commit 1a519d0

Browse files
authored
v0.0.8 (#9)
* Update znn_ledger_dart dep * Update setup-dart action * Update dcli package * Update sdk environment * Pub upgrade * Ref znn deps by tag
1 parent fbb8d79 commit 1a519d0

File tree

4 files changed

+128
-141
lines changed

4 files changed

+128
-141
lines changed

.github/workflows/znn_cli_builder.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, windows-latest, macOS-12]
17+
sdk: [stable]
1718
include:
1819
- os: ubuntu-latest
1920
output-name: znn-cli-linux
@@ -25,7 +26,9 @@ jobs:
2526
- name: Checkout
2627
uses: actions/checkout@v3
2728
- name: Setup Dart SDK
28-
uses: dart-lang/[email protected]
29+
uses: dart-lang/setup-dart@v1
30+
with:
31+
sdk: ${{ matrix.sdk }}
2932
- name: Install dependencies
3033
run: dart pub get
3134
- name: Build znn-cli

lib/global.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import 'package:znn_ledger_dart/znn_ledger_dart.dart';
33

44
const znnDaemon = 'znnd';
55
const znnCli = 'znn-cli';
6-
const znnCliVersion = '0.0.7';
6+
const znnCliVersion = '0.0.8';
77

88
final Zenon znnClient = Zenon();
99
final KeyStoreManager keyStoreManager =

0 commit comments

Comments
 (0)