Skip to content
This repository has been archived by the owner on Nov 14, 2023. It is now read-only.

Commit

Permalink
rev the analyzer to 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
devoncarew committed Feb 25, 2015
1 parent 40fe556 commit 1bb609f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/src/check_command.dart
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CheckCommand extends Command {
context.sourceFactory = new SourceFactory(resolvers);
AnalysisEngine.instance.logger = new _Logger();

project.print('Analyzing ${project.name}...');
project.print('Checking project ${project.name}...');

List<Source> sources = [];
ChangeSet changeSet = new ChangeSet();
Expand Down
2 changes: 1 addition & 1 deletion lib/src/common.dart
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ void runProcess(String executable,
executable, arguments, workingDirectory: workingDirectory);

print(result.stdout.trim());

if (result.stderr != null && !result.stderr.isEmpty) {
print(result.stderr);
}
Expand Down
2 changes: 1 addition & 1 deletion lib/tuneup.dart
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import 'src/trim_command.dart';
export 'src/common.dart' show CliLogger;

// This version must be updated in tandem with the pubspec version.
const String APP_VERSION = '0.0.5+1';
const String APP_VERSION = '0.0.5+2';
const String APP_NAME = 'tuneup';

// TODO: --package-root
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ name: tuneup
description: A command-line tool to manipulate and inspect your Dart projects.

# This version must be updated in tandem with the lib/tuneup.dart version.
version: 0.0.5+1
version: 0.0.5+2
author: Devon Carew <devoncarew@google.com>
homepage: https://github.com/google/tuneup.dart

environment:
sdk: '>=1.0.0 <2.0.0'

dependencies:
analyzer: '>=0.23.0 <0.24.0'
analyzer: '>=0.24.0 <0.25.0'
args: '>=0.12.0 <0.13.0'
cli_util: '>=0.0.1 <0.1.0'
path: '>=1.0.0 <2.0.0'
Expand Down

0 comments on commit 1bb609f

Please sign in to comment.