meta 1.9.1

Fixes: https://github.com/dart-lang/sdk/issues/51059

Change-Id: I7f28741ad0d1507cc1140da6c7c0bccb31d6946b
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/290604
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Phil Quitslund <pquitslund@google.com>
This commit is contained in:
pq 2023-03-22 20:58:58 +00:00 committed by Commit Queue
parent 27171f2d73
commit dfe1093849
3 changed files with 5 additions and 5 deletions

View file

@ -1,6 +1,7 @@
## 1.9.1-dev
## 1.9.1
* Update `@reopen` documentation.
* Update SDK constraints to `>=2.12.0 <4.0.0`.
* Mark `@reopen` stable.
## 1.9.0

View file

@ -297,7 +297,6 @@ const _Protected protected = _Protected();
/// class.
/// * The annotation is applied to a class or mixin which does not require it.
/// (The intent to reopen was not satisfied.)
@experimental // todo(pq): remove before publishing for 3.0 (https://github.com/dart-lang/sdk/issues/51059)
const _Reopen reopen = _Reopen();
/// Used to annotate a named parameter `p` in a method or function `f`.

View file

@ -1,13 +1,13 @@
name: meta
# Note, because version `2.0.0` was mistakenly released, the next major version must be `3.x.y`.
version: 1.9.1-dev
version: 1.9.1
description: >-
Annotations used to express developer intentions that can't otherwise be
deduced by statically analyzing source code.
repository: https://github.com/dart-lang/sdk/tree/main/pkg/meta
environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.12.0 <4.0.0"
# We use 'any' version constraints here as we get our package versions from
# the dart-lang/sdk repo's DEPS file. Note that this is a special case; the