diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a1ade5..91777de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.2.0 + +- Added support for [occurrence diagnostics](https://github.com/sourcegraph/scip/blob/8d3634b4d6aa564129dac3ee462592ebc4203236/scip.proto#L579), all indexed packages will now include hints, warnings, and errors from the dart analysis server + ## 1.1.5 - Fixed issues where cascade references would incorrectly index variables and assignments @@ -12,12 +16,12 @@ ## 1.1.3 -- generated scip bindings updated to provide relationship fields. This allows for "Go to Implementations" and other class/method inheritance navigation. +- Generated scip bindings updated to provide relationship fields. This allows for "Go to Implementations" and other class/method inheritance navigation. ## 1.1.2 -- added `--version` flag to retrieve the version of scip-dart -- populated `ToolInfo.version` in resulting scip files +- Added `--version` flag to retrieve the version of scip-dart +- Populated `ToolInfo.version` in resulting scip files ## 1.1.1 diff --git a/lib/src/version.dart b/lib/src/version.dart index 4703e4e..97ebf84 100644 --- a/lib/src/version.dart +++ b/lib/src/version.dart @@ -2,4 +2,4 @@ // stored within pubspec.yaml /// The current version of scip_dart -const scipDartVersion = '1.1.5'; +const scipDartVersion = '1.2.0'; diff --git a/pubspec.yaml b/pubspec.yaml index 60ebb2e..0a32e99 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,5 +1,5 @@ name: scip_dart -version: 1.1.5 +version: 1.2.0 description: generates scip bindings for dart files repository: https://github.com/Workiva/scip-dart