diff --git a/CHANGELOG.md b/CHANGELOG.md index 947135f..b527764 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed + +- Fix Broken pipe error when running Packwerk (#34) + ## [0.0.9] - 2024-06-14 ### Added diff --git a/gradle.properties b/gradle.properties index 98f92f9..45eff63 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.vinted.packwerkintellij pluginName = packwerk-intellij pluginRepositoryUrl = https://github.com/vinted/packwerk-intellij # SemVer format -> https://semver.org -pluginVersion = 0.0.9 +pluginVersion = 0.0.10 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 233 diff --git a/src/main/kotlin/com/vinted/packwerkintellij/annotators/PackwerkAnnotator.kt b/src/main/kotlin/com/vinted/packwerkintellij/annotators/PackwerkAnnotator.kt index 3614404..a65ac9d 100644 --- a/src/main/kotlin/com/vinted/packwerkintellij/annotators/PackwerkAnnotator.kt +++ b/src/main/kotlin/com/vinted/packwerkintellij/annotators/PackwerkAnnotator.kt @@ -19,6 +19,7 @@ import org.intellij.markdown.lexer.push import org.jetbrains.plugins.ruby.ruby.lang.psi.references.RColonReference import org.jetbrains.plugins.ruby.ruby.lang.psi.references.RTopConstReference import org.jetbrains.plugins.ruby.ruby.lang.psi.variables.RConstant +import java.io.IOException import java.nio.charset.Charset import java.util.* import java.util.concurrent.TimeUnit @@ -101,9 +102,14 @@ internal class PackwerkAnnotator : ExternalAnnotator