Skip to content

Commit 653e444

Browse files
scheglovcommit-bot@chromium.org
authored andcommitted
Prepare to publish analyzer_plugin 0.2.5
[email protected] Change-Id: Ie48ebda4951c1ea6d90e049639d3bbf8e15013be Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153383 Reviewed-by: Brian Wilkerson <[email protected]> Commit-Queue: Konstantin Shcheglov <[email protected]>
1 parent 819f0a9 commit 653e444

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

pkg/analyzer_plugin/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 0.2.5
2+
- Change supported analyzer version to `^0.39.12`
3+
14
## 0.2.4
25
- Exposed method `AnalyzerConverter.locationFromElement` (was previously
36
private).

pkg/analyzer_plugin/lib/plugin/plugin.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ abstract class ServerPlugin {
412412
FileByteStore(byteStorePath,
413413
tempNameSuffix: DateTime.now().millisecondsSinceEpoch.toString()),
414414
64 * M);
415-
_sdkManager = DartSdkManager(sdkPath, true);
415+
_sdkManager = DartSdkManager(sdkPath);
416416
return PluginVersionCheckResult(
417417
isCompatibleWith(serverVersion), name, version, fileGlobsToAnalyze,
418418
contactInfo: contactInfo);

pkg/analyzer_plugin/pubspec.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
name: analyzer_plugin
22
description: A framework and support code for building plugins for the analysis server.
3-
version: 0.2.4
3+
version: 0.2.5
44
author: Dart Team <[email protected]>
55
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_plugin
66

77
environment:
88
sdk: '>=2.3.0 <3.0.0'
99

1010
dependencies:
11-
analyzer: '^0.39.0'
11+
analyzer: '^0.39.12'
1212
charcode: '^1.1.0'
1313
dart_style: '^1.2.0'
1414
html: '>=0.13.1 <0.15.0'

0 commit comments

Comments
 (0)