diff --git a/commanddash/lib/agent/agent_handler.dart b/commanddash/lib/agent/agent_handler.dart index 4f66d30..bbd82d4 100644 --- a/commanddash/lib/agent/agent_handler.dart +++ b/commanddash/lib/agent/agent_handler.dart @@ -50,7 +50,7 @@ class AgentHandler { githubAccessToken: json['auth_details']['github_token'], agentName: json['agent_name'], agentVersion: json['agent_version'], - isTest: json['testing']); + isTest: json['testing'] ?? false); } Future runTask(TaskAssist taskAssist) async { diff --git a/commanddash/lib/runner.dart b/commanddash/lib/runner.dart index 7d67064..f62c82f 100644 --- a/commanddash/lib/runner.dart +++ b/commanddash/lib/runner.dart @@ -33,7 +33,7 @@ class VersionCommand extends Command { @override void run() { /// It is not possible to fetch version from pubspec.yaml hence assigning manually - print('0.0.4'); + print('0.0.5'); } } diff --git a/commanddash/pubspec.yaml b/commanddash/pubspec.yaml index bda4ada..9981ff7 100644 --- a/commanddash/pubspec.yaml +++ b/commanddash/pubspec.yaml @@ -1,6 +1,6 @@ name: commanddash description: CLI enhancments to Dash-AI -version: 0.0.4 +version: 0.0.5 repository: https://github.com/Welltested-AI/commanddash environment: