From 0d876c60ada65a719563a1f06f02ac9a39c7cf16 Mon Sep 17 00:00:00 2001 From: Sam Rawlins Date: Fri, 15 Dec 2017 23:40:03 +0000 Subject: [PATCH] Add a changelog entry for meta 1.0.5 Bug: https://github.com/dart-lang/sdk/issues/29220 Change-Id: I980fd5820d94803862aadd7c53a97daf864736d2 Reviewed-on: https://dart-review.googlesource.com/29180 Reviewed-by: Brian Wilkerson Commit-Queue: Samuel Rawlins --- pkg/meta/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pkg/meta/CHANGELOG.md b/pkg/meta/CHANGELOG.md index 1c4c2563e80..12ec3832765 100644 --- a/pkg/meta/CHANGELOG.md +++ b/pkg/meta/CHANGELOG.md @@ -32,6 +32,14 @@ } ``` +## 1.0.5 +* Introduce `@experimental` to annotate a library, or any declaration that is + part of the public interface of a library (such as top-level members, class + members, and function parameters) to indicate that the annotated API is + experimental and may be removed or changed at any-time without updating the + version of the containing package, despite the fact that it would otherwise + be a breaking change. + ## 1.0.4 * Introduce `@virtual` to allow field overrides in strong mode (SDK issue [27384](https://github.com/dart-lang/sdk/issues/27384)).