Skip to content

Commit

Permalink
bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
codekeyz committed Dec 11, 2024
1 parent f6f029c commit a467018
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/globe_cli/lib/src/command_runner.dart
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class GlobeCliCommandRunner extends CompletionCommandRunner<int> {
GlobeHttpServer? httpServer,
}) : _logger = logger ?? Logger(),
_pubUpdater = pubUpdater ?? PubUpdater(),
super(package_info.name, package_info.description) {
super(package_info.executable, package_info.description) {
argParser
..addFlag(
'version',
Expand Down
2 changes: 1 addition & 1 deletion packages/globe_cli/lib/src/commands/update.dart
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class UpdateCommand extends BaseGlobeCommand {
@override
FutureOr<int>? run() async {
final isUpToDate = await updater.isUpToDate(
packageName: package_info.packageName,
packageName: package_info.name,
currentVersion: package_info.version,
);

Expand Down
3 changes: 2 additions & 1 deletion packages/globe_cli/lib/src/package_info.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@

const name = 'globe_cli';
const version = '0.0.14';
const description = 'The global deployment platform for Dart & Flutter applications.';
const description =
'The global deployment platform for Dart & Flutter applications.';
const executable = 'globe';

0 comments on commit a467018

Please sign in to comment.