diff --git a/packages/devtools_extensions/CHANGELOG.md b/packages/devtools_extensions/CHANGELOG.md index 4ad9a9c668a..509f94a982a 100644 --- a/packages/devtools_extensions/CHANGELOG.md +++ b/packages/devtools_extensions/CHANGELOG.md @@ -1,3 +1,8 @@ + ## 0.3.0 * Fix `build_and_copy` command by removing deprecated `--web-renderer` option. * Bump minimum Dart SDK version to `3.6.0` and minimum Flutter SDK version diff --git a/packages/devtools_extensions/README.md b/packages/devtools_extensions/README.md index 286a2069cba..6fcfdba60ac 100644 --- a/packages/devtools_extensions/README.md +++ b/packages/devtools_extensions/README.md @@ -1,3 +1,8 @@ + # Dart & Flutter DevTools Extensions Extend Dart & Flutter's developer tool suite, diff --git a/packages/devtools_extensions/bin/_build_and_copy.dart b/packages/devtools_extensions/bin/_build_and_copy.dart index 0daf5274160..a3d2ee670bb 100644 --- a/packages/devtools_extensions/bin/_build_and_copy.dart +++ b/packages/devtools_extensions/bin/_build_and_copy.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:io'; diff --git a/packages/devtools_extensions/bin/_validate.dart b/packages/devtools_extensions/bin/_validate.dart index 2ad35498e0c..89cda33b1e8 100644 --- a/packages/devtools_extensions/bin/_validate.dart +++ b/packages/devtools_extensions/bin/_validate.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:io'; diff --git a/packages/devtools_extensions/bin/devtools_extensions.dart b/packages/devtools_extensions/bin/devtools_extensions.dart index 4acf18a5f7b..2ba3cadfd72 100644 --- a/packages/devtools_extensions/bin/devtools_extensions.dart +++ b/packages/devtools_extensions/bin/devtools_extensions.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:args/command_runner.dart'; import 'package:io/io.dart'; diff --git a/packages/devtools_extensions/extension_config_spec.md b/packages/devtools_extensions/extension_config_spec.md index 3f3175d0b28..6d078159a86 100644 --- a/packages/devtools_extensions/extension_config_spec.md +++ b/packages/devtools_extensions/extension_config_spec.md @@ -1,3 +1,8 @@ + The `config.yaml` file for a DevTools extension must follow the format below. ## Required fields diff --git a/packages/devtools_extensions/integration_test/run_tests.dart b/packages/devtools_extensions/integration_test/run_tests.dart index 01d9c793b6a..1eb213d81c4 100644 --- a/packages/devtools_extensions/integration_test/run_tests.dart +++ b/packages/devtools_extensions/integration_test/run_tests.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_shared/devtools_test_utils.dart'; diff --git a/packages/devtools_extensions/integration_test/test/simulated_environment_test.dart b/packages/devtools_extensions/integration_test/test/simulated_environment_test.dart index 2e479520714..8816ee21c37 100644 --- a/packages/devtools_extensions/integration_test/test/simulated_environment_test.dart +++ b/packages/devtools_extensions/integration_test/test/simulated_environment_test.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_app_shared/ui.dart'; import 'package:devtools_extensions/api.dart'; diff --git a/packages/devtools_extensions/pubspec.yaml b/packages/devtools_extensions/pubspec.yaml index b601d8b7f32..350175004a2 100644 --- a/packages/devtools_extensions/pubspec.yaml +++ b/packages/devtools_extensions/pubspec.yaml @@ -1,3 +1,6 @@ +# Copyright 2025 The Flutter Authors +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. name: devtools_extensions description: A package for building and supporting extensions for Dart DevTools. version: 0.3.0 diff --git a/packages/devtools_extensions/test/api_test.dart b/packages/devtools_extensions/test/api_test.dart index 891280cdd13..f2b162d7ee1 100644 --- a/packages/devtools_extensions/test/api_test.dart +++ b/packages/devtools_extensions/test/api_test.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:devtools_extensions/api.dart'; import 'package:flutter_test/flutter_test.dart'; diff --git a/packages/devtools_extensions/test/validate_test.dart b/packages/devtools_extensions/test/validate_test.dart index ae474cd1ef0..ec94dd1d932 100644 --- a/packages/devtools_extensions/test/validate_test.dart +++ b/packages/devtools_extensions/test/validate_test.dart @@ -1,6 +1,6 @@ -// Copyright 2024 The Chromium Authors. All rights reserved. +// Copyright 2024 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'dart:io'; diff --git a/packages/devtools_extensions/test/web/devtools_extension_test.dart b/packages/devtools_extensions/test/web/devtools_extension_test.dart index 1659e78cf53..03fd4463607 100644 --- a/packages/devtools_extensions/test/web/devtools_extension_test.dart +++ b/packages/devtools_extensions/test/web/devtools_extension_test.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. @TestOn('browser') library; diff --git a/packages/devtools_extensions/test_driver/integration_test.dart b/packages/devtools_extensions/test_driver/integration_test.dart index 819769f2652..419a574dbd5 100644 --- a/packages/devtools_extensions/test_driver/integration_test.dart +++ b/packages/devtools_extensions/test_driver/integration_test.dart @@ -1,6 +1,6 @@ -// Copyright 2023 The Chromium Authors. All rights reserved. +// Copyright 2023 The Flutter Authors // Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. +// found in the LICENSE file or at https://developers.google.com/open-source/licenses/bsd. import 'package:flutter_driver/flutter_driver.dart'; import 'package:integration_test/integration_test_driver_extended.dart';