From d29c10efc2d9992c62eedf989f7c8b8ccc5bdacf Mon Sep 17 00:00:00 2001 From: Nate Bosch <nbosch1@gmail.com> Date: Thu, 9 Jan 2020 12:10:55 -0800 Subject: [PATCH] Drop author from pubspecs (#1139) The field is no longer used by pub and triggers a warning on publish. --- pkgs/test/pubspec.yaml | 3 +-- pkgs/test_api/pubspec.yaml | 1 - pkgs/test_core/pubspec.yaml | 3 +-- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pkgs/test/pubspec.yaml b/pkgs/test/pubspec.yaml index b9d23006..9f6f81ff 100644 --- a/pkgs/test/pubspec.yaml +++ b/pkgs/test/pubspec.yaml @@ -1,6 +1,5 @@ name: test -version: 1.11.0 -author: Dart Team <misc@dartlang.org> +version: 1.11.1-dev description: A full featured library for writing and running Dart tests. homepage: https://github.com/dart-lang/test/blob/master/pkgs/test diff --git a/pkgs/test_api/pubspec.yaml b/pkgs/test_api/pubspec.yaml index d6627fb5..f2cc1d77 100644 --- a/pkgs/test_api/pubspec.yaml +++ b/pkgs/test_api/pubspec.yaml @@ -1,6 +1,5 @@ name: test_api version: 0.2.13-dev -author: Dart Team <misc@dartlang.org> description: A library for writing Dart tests. homepage: https://github.com/dart-lang/test/blob/master/pkgs/test_api diff --git a/pkgs/test_core/pubspec.yaml b/pkgs/test_core/pubspec.yaml index 5c84a482..942e2824 100644 --- a/pkgs/test_core/pubspec.yaml +++ b/pkgs/test_core/pubspec.yaml @@ -1,6 +1,5 @@ name: test_core -version: 0.2.17 -author: Dart Team <misc@dartlang.org> +version: 0.2.18-dev description: A basic library for writing tests and running them on the VM. homepage: https://github.com/dart-lang/test/blob/master/pkgs/test_core -- GitLab