Skip to content

Commit

Permalink
Merge pull request #53 from CommandDash/develop
Browse files Browse the repository at this point in the history
Rel 0.0.5
  • Loading branch information
samyakkkk authored May 1, 2024
2 parents f3f06ea + c756560 commit 570f1eb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion commanddash/lib/agent/agent_handler.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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<void> runTask(TaskAssist taskAssist) async {
Expand Down
2 changes: 1 addition & 1 deletion commanddash/lib/runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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');
}
}

Expand Down
2 changes: 1 addition & 1 deletion commanddash/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 570f1eb

Please sign in to comment.