Skip to content

Commit

Permalink
v1.1.1, Additional error handling to accommodate situations where sha…
Browse files Browse the repository at this point in the history
…red configuration files are copied from one project or code branch to another which does not contain the Yaml configuration files.
  • Loading branch information
egoshard committed May 17, 2019
1 parent ee11a94 commit cdf895f
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@
* limitations under the License.
*/
plugins {
id 'org.jetbrains.intellij' version '0.3.11'
id 'org.jetbrains.intellij' version '0.4.8'
}

group 'com.egoshard.intellij'
version '1.0.0-RELEASE'
version '1.1.1-RELEASE'

ext {
junitJupiterVersion = '5.3.1'
Expand Down Expand Up @@ -47,12 +47,12 @@ test {
}

intellij {
version '2018.2.6'
version '2019.1'
}

patchPluginXml {
sinceBuild '172'
untilBuild '183.*'
sinceBuild '191'
untilBuild '191.*'
}

wrapper {
Expand Down
14 changes: 14 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@
]]></description>
<change-notes>
<![CDATA[
<p><strong>1.1.1</strong>:</p>
<ul>
<li>Additional error handling to accommodate situations where shared configuration files are copied from one project or code branch to another which does not contain the Yaml configuration files.</li>
</ul>
<p><strong>1.1.0</strong>:</p>
<ul>
<li>Update gradle-intellij-plugin and added support for Intellij 2019.1</li>
</ul>
<p><strong>1.0.0</strong>:</p>
<ul>
<li>Initial support for Kubernetes configuration files and IntelliJ 2018</li>
</ul>
]]>
</change-notes>
<idea-version since-build="172" until-build="183.*"/>
Expand Down

0 comments on commit cdf895f

Please sign in to comment.