diff --git a/pubspec.yaml b/pubspec.yaml index 654ec5e743..e6a69a3ca5 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,6 @@ name: dartdoc # Run `grind build` after updating. version: 0.29.2 -author: Dart Team description: A non-interactive HTML documentation generator for Dart source code. homepage: https://github.com/dart-lang/dartdoc environment: diff --git a/tool/grind.dart b/tool/grind.dart index a7399909a1..62d9c7eefb 100644 --- a/tool/grind.dart +++ b/tool/grind.dart @@ -876,12 +876,8 @@ Future checkBuild() async { @Task('Dry run of publish to pub.dartlang') @Depends(checkChangelogHasVersion) Future tryPublish() async { - if (Platform.version.contains('dev')) { - log('Skipping publish check -- requires a stable version of the SDK'); - } else { - var launcher = SubprocessLauncher('try-publish'); - await launcher.runStreamed(sdkBin('pub'), ['publish', '-n']); - } + var launcher = SubprocessLauncher('try-publish'); + await launcher.runStreamed(sdkBin('pub'), ['publish', '-n']); } @Task('Run a smoke test, only')