Skip to content

Commit

Permalink
fix plugin build settings (#100)
Browse files Browse the repository at this point in the history
  • Loading branch information
koxudaxi authored Apr 17, 2020
1 parent ad05a04 commit bc0b86a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
7 changes: 4 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext.kotlin_version = "1.3.61"
ext.python_core_version = "201.6668.13"
ext.kotlin_version = "1.3.71"
ext.python_core_version = "201.6668.115"
repositories {
mavenCentral()
}
Expand All @@ -12,7 +12,7 @@ buildscript {


plugins {
id "org.jetbrains.intellij" version "0.4.16"
id "org.jetbrains.intellij" version "0.4.18"
id "java"
id "idea"
}
Expand All @@ -21,6 +21,7 @@ intellij {
pluginName project.name
version "2020.1"
type "IC"
updateSinceUntilBuild false
downloadSources true
plugins "java", "Kotlin", "PythonCore:$python_core_version"

Expand Down
9 changes: 7 additions & 2 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
<idea-plugin url="https://github.com/koxudaxi/pydantic-pycharm-plugin">
<id>com.koxudaxi.pydantic</id>
<name>Pydantic</name>
<version>0.1.1</version>
<version>0.1.2</version>
<vendor email="koaxudai@gmail.com">Koudai Aono @koxudaxi</vendor>
<change-notes><![CDATA[
<h2>version 0.1.2</h2>
<p>BugFixes</p>
<ul>
<li>Fix plugin build settings [#100] </li>
</ul>
<h2>version 0.1.1</h2>
<p>Features</p>
<ul>
Expand Down Expand Up @@ -152,7 +157,7 @@
</ul>
]]></description>

<idea-version since-build="2020.1"/>
<idea-version since-build="201.6668.115"/>

<depends>com.intellij.modules.lang</depends>
<depends>com.intellij.modules.python</depends>
Expand Down

0 comments on commit bc0b86a

Please sign in to comment.