diff --git a/.github/ci-gradle.properties b/.github/ci-gradle.properties index 44763c3..2fc817e 100644 --- a/.github/ci-gradle.properties +++ b/.github/ci-gradle.properties @@ -1,5 +1,5 @@ # -# Copyright 2021 Roberto Leinardi. +# Copyright 2023 Roberto Leinardi. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/.idea/checkstyle-idea.xml b/.idea/checkstyle-idea.xml index 5cd6e40..df71ad8 100644 --- a/.idea/checkstyle-idea.xml +++ b/.idea/checkstyle-idea.xml @@ -1,17 +1,17 @@ - 9.1 + 8.29 JavaOnly diff --git a/CHANGELOG.md b/CHANGELOG.md index 906c8e9..3f8555d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +**[0.16.0] 2023-08-31** +- Fixed #63: Remote Interpreter +- Fixed #110: Support for mypy using WSL interpreter +- Respect mypy path field and don't force usage of project interpreter + **[0.15.0] 2023-04-24** - Fixed #107: Icons not visible in new Jetbrains UI - New: Min IDEA version raised from PC-2021.2 to PC-2022.1.4 diff --git a/build.gradle b/build.gradle index a94b788..697de29 100644 --- a/build.gradle +++ b/build.gradle @@ -17,6 +17,7 @@ import org.commonmark.node.Node import org.commonmark.parser.Parser import org.commonmark.renderer.html.HtmlRenderer +import se.bjurr.violations.comments.github.plugin.gradle.ViolationCommentsToGitHubTask buildscript { repositories { @@ -31,12 +32,12 @@ buildscript { } plugins { - id 'org.jetbrains.intellij' version '1.13.3' + id 'org.jetbrains.intellij' version '1.15.0' id 'net.ltgt.errorprone' version '3.1.0' id 'idea' id 'java' id 'checkstyle' - id 'com.github.ben-manes.versions' version '0.46.0' + id 'com.github.ben-manes.versions' version '0.47.0' id 'se.bjurr.violations.violation-comments-to-github-gradle-plugin' version '1.70.0' } @@ -116,7 +117,7 @@ dependencies { if (hasPycharmPath) { compileOnly name: 'pycharm' } - errorprone 'com.google.errorprone:error_prone_core:2.18.0' + errorprone 'com.google.errorprone:error_prone_core:2.21.1' } def getChangelogHtml() { @@ -128,7 +129,7 @@ def getChangelogHtml() { check.dependsOn(verifyPlugin) -task violationCommentsToGitHub(type: se.bjurr.violations.comments.github.plugin.gradle.ViolationCommentsToGitHubTask) { +task violationCommentsToGitHub(type: ViolationCommentsToGitHubTask) { repositoryOwner = "leinardi" repositoryName = "mypy-pycharm" pullRequestId = System.properties['GITHUB_PULLREQUESTID'] @@ -146,6 +147,6 @@ task violationCommentsToGitHub(type: se.bjurr.violations.comments.github.plugin. } wrapper { - gradleVersion = "7.6" + gradleVersion = "8.2.1" distributionType = Wrapper.DistributionType.ALL } diff --git a/config/checkstyle/checkstyle-suppressions.xml b/config/checkstyle/checkstyle-suppressions.xml index e1d78d0..17feb83 100644 --- a/config/checkstyle/checkstyle-suppressions.xml +++ b/config/checkstyle/checkstyle-suppressions.xml @@ -1,5 +1,5 @@