Skip to content
This repository has been archived by the owner on Nov 30, 2024. It is now read-only.

Commit

Permalink
Version bump and support for 2021.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rikvdkleij committed Jul 28, 2021
1 parent 96631b2 commit 8ee91c2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 15 deletions.
21 changes: 10 additions & 11 deletions .run/IntelliJ-Haskell.run.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType"
show_console_on_std_out="true">
<module name="intellij-haskell"/>
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50"/>
<option name="PROGRAM_PARAMETERS" value=""/>
<alternative-path path="IntelliJ IDEA IU-202.7660.26" alternative-path-enabled="true"/>
<predefined_log_file enabled="true" id="idea.log"/>
<method v="2">
<option name="Make" enabled="true"/>
</method>
</configuration>
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" show_console_on_std_out="true">
<module name="intellij-haskell" />
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50" />
<option name="PROGRAM_PARAMETERS" value="" />
<alternative-path path="IntelliJ IDEA Community Edition IC-202.8194.7" alternative-path-enabled="true" />
<predefined_log_file enabled="true" id="idea.log" />
<method v="2">
<option name="Make" enabled="true" />
</method>
</configuration>
</component>
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
lazy val commonSettings = Seq(
version := "1.0.0-beta85",
version := "1.0.0-beta86",
scalaVersion := "2.13.6"
)

Expand Down
10 changes: 8 additions & 2 deletions intellij-haskell/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<idea-plugin require-restart="true">
<id>intellij.haskell</id>
<name>IntelliJ-Haskell</name>
<version>1.0.0-beta85</version>
<version>1.0.0-beta86</version>
<vendor email="[email protected]">Rik van der Kleij</vendor>

<description><![CDATA[
Expand All @@ -20,6 +20,12 @@
]]></description>

<change-notes><![CDATA[
<p>1.0.0-beta86</p>
<ul>
<li>Support for 2021.2</li>
<li>Improved support for holes by @mbwgh. See #629. </li>
<li>Documentation in code completion by @fantostisch</li>
</ul>
<p>1.0.0-beta85</p>
<ul>
<li>Various improvements and fixes</li>
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.5")
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.6")

resolvers += Resolver.url("jetbrains-bintray",
url("https://dl.bintray.com/jetbrains/sbt-plugins/"))(Resolver.ivyStylePatterns)

0 comments on commit 8ee91c2

Please sign in to comment.