Skip to content

Commit

Permalink
Prepare to publish analyzer_plugin 0.2.5
Browse files Browse the repository at this point in the history
R=brianwilkerson@google.com

Change-Id: Ie48ebda4951c1ea6d90e049639d3bbf8e15013be
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153383
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
  • Loading branch information
scheglov authored and commit-bot@chromium.org committed Jul 8, 2020
1 parent 819f0a9 commit 653e444
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions pkg/analyzer_plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.2.5
- Change supported analyzer version to `^0.39.12`

## 0.2.4
- Exposed method `AnalyzerConverter.locationFromElement` (was previously
private).
Expand Down
2 changes: 1 addition & 1 deletion pkg/analyzer_plugin/lib/plugin/plugin.dart
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ abstract class ServerPlugin {
FileByteStore(byteStorePath,
tempNameSuffix: DateTime.now().millisecondsSinceEpoch.toString()),
64 * M);
_sdkManager = DartSdkManager(sdkPath, true);
_sdkManager = DartSdkManager(sdkPath);
return PluginVersionCheckResult(
isCompatibleWith(serverVersion), name, version, fileGlobsToAnalyze,
contactInfo: contactInfo);
Expand Down
4 changes: 2 additions & 2 deletions pkg/analyzer_plugin/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
name: analyzer_plugin
description: A framework and support code for building plugins for the analysis server.
version: 0.2.4
version: 0.2.5
author: Dart Team <misc@dartlang.org>
homepage: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_plugin

environment:
sdk: '>=2.3.0 <3.0.0'

dependencies:
analyzer: '^0.39.0'
analyzer: '^0.39.12'
charcode: '^1.1.0'
dart_style: '^1.2.0'
html: '>=0.13.1 <0.15.0'
Expand Down

0 comments on commit 653e444

Please sign in to comment.