Skip to content

Commit e566120

Browse files
stereotype441commit-bot@chromium.org
authored andcommitted
Prepare to publish analyzer 0.39.1.
Change-Id: I57132f7ba1e876ce94ae9acd95e702713d79de83 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/123700 Reviewed-by: Samuel Rawlins <srawlins@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com> Commit-Queue: Paul Berry <paulberry@google.com>
1 parent bb8ddfc commit e566120

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

pkg/analyzer/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
## 0.39.1-dev
1+
## 0.39.1
22
* Deprecated `DartType.substitute2()`. Use `ClassElement.instantiate()`
33
or `FunctionTypeAliasElement.instantiate()` instead.
44
* Deprecated `ParameterizedType.instantiate()` and
55
`InterfaceType.instantiate()`. Use `ClassElement.instantiate()` instead.
66
Using `FunctionType.instantiate()` is still valid.
77
* Deprecated `FunctionTypeAliasElement.instantiate2`, use `instantiate2`.
88
In the next version `instantiate2` will be removed.
9-
9+
* Deprecated `ParameterizedType.typeParameters`. Please use
10+
`ClassElement.typeParmeters or FunctionType.typeFormals` instead.
11+
* Bug fixes: 27617, 34378, 35607, 38494, 38582, 38583, 38643, 38761, 38991,
12+
39089, 39111, 39156, 39158, 39170, 39171, 39178.
1013

1114
## 0.39.0
1215
* Removed deprecated `DartType.isEquivalentTo`.

pkg/analyzer/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: analyzer
2-
version: 0.39.0
2+
version: 0.39.1
33
author: Dart Team <misc@dartlang.org>
44
description: This package provides a library that performs static analysis of Dart code.
55
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer
@@ -14,10 +14,10 @@ dependencies:
1414
collection: ^1.10.1
1515
convert: ^2.0.0
1616
crypto: '>=1.1.1 <3.0.0'
17-
front_end: 0.1.28
17+
front_end: 0.1.29
1818
glob: ^1.0.3
1919
html: '>=0.13.4+1 <0.15.0'
20-
kernel: 0.3.28
20+
kernel: 0.3.29
2121
meta: ^1.0.2
2222
package_config: '>=0.1.5 <2.0.0'
2323
path: '>=0.9.0 <2.0.0'

pkg/front_end/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
name: front_end
22
# Currently, front_end API is not stable and users should not
33
# depend on semver semantics when depending on this package.
4-
version: 0.1.28
4+
version: 0.1.29
55
author: Dart Team <misc@dartlang.org>
66
description: Front end for compilation of Dart code.
77
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/front_end
88
environment:
99
sdk: '>=2.2.2 <3.0.0'
1010
dependencies:
1111
_fe_analyzer_shared: 1.0.0
12-
kernel: 0.3.28
12+
kernel: 0.3.29
1313
package_config: '^1.1.0'
1414
meta: ^1.0.2
1515
dev_dependencies:
16-
analyzer: 0.39.0
16+
analyzer: 0.39.1
1717
args: '>=0.13.0 <2.0.0'
1818
build_integration:
1919
path: ../build_integration

pkg/kernel/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: kernel
22
# Currently, kernel API is not stable and users should
33
# not depend on semver semantics when depending on this package.
4-
version: 0.3.28
4+
version: 0.3.29
55
author: Dart Team <misc@dartlang.org>
66
description: Dart IR (Intermediate Representation)
77
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/kernel

0 commit comments

Comments
 (0)