diff --git a/CHANGELOG.md b/CHANGELOG.md index 426c10e..798a542 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # ChangeLog +## v0.1.13 + +- Adds workaround for a panic triggerd by the presence of multiple + field definitions with the same anonymous type. + (https://github.com/sourcegraph/scip-go/pull/96) + + ```go + type T struct { + A, B struct { B int } + } + ``` + ## v0.1.12 - Fixes the Dockerfile for the indexer. Due to a bug in the Dockerfile, diff --git a/internal/index/version.txt b/internal/index/version.txt index 0e24a92..7ac4e5e 100644 --- a/internal/index/version.txt +++ b/internal/index/version.txt @@ -1 +1 @@ -0.1.12 +0.1.13