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

Commit 8ee91c2

Browse files
committed
Version bump and support for 2021.2
1 parent 96631b2 commit 8ee91c2

File tree

4 files changed

+20
-15
lines changed

4 files changed

+20
-15
lines changed

.run/IntelliJ-Haskell.run.xml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType"
3-
show_console_on_std_out="true">
4-
<module name="intellij-haskell"/>
5-
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50"/>
6-
<option name="PROGRAM_PARAMETERS" value=""/>
7-
<alternative-path path="IntelliJ IDEA IU-202.7660.26" alternative-path-enabled="true"/>
8-
<predefined_log_file enabled="true" id="idea.log"/>
9-
<method v="2">
10-
<option name="Make" enabled="true"/>
11-
</method>
12-
</configuration>
2+
<configuration default="false" name="IntelliJ-Haskell" type="#org.jetbrains.idea.devkit.run.PluginConfigurationType" show_console_on_std_out="true">
3+
<module name="intellij-haskell" />
4+
<option name="VM_PARAMETERS" value="-Xmx512m -Xms256m -ea -Ddump.threads.on.long.write.action.waiting=50" />
5+
<option name="PROGRAM_PARAMETERS" value="" />
6+
<alternative-path path="IntelliJ IDEA Community Edition IC-202.8194.7" alternative-path-enabled="true" />
7+
<predefined_log_file enabled="true" id="idea.log" />
8+
<method v="2">
9+
<option name="Make" enabled="true" />
10+
</method>
11+
</configuration>
1312
</component>

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
lazy val commonSettings = Seq(
2-
version := "1.0.0-beta85",
2+
version := "1.0.0-beta86",
33
scalaVersion := "2.13.6"
44
)
55

intellij-haskell/META-INF/plugin.xml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<idea-plugin>
1+
<idea-plugin require-restart="true">
22
<id>intellij.haskell</id>
33
<name>IntelliJ-Haskell</name>
4-
<version>1.0.0-beta85</version>
4+
<version>1.0.0-beta86</version>
55
<vendor email="[email protected]">Rik van der Kleij</vendor>
66

77
<description><![CDATA[
@@ -20,6 +20,12 @@
2020
]]></description>
2121

2222
<change-notes><![CDATA[
23+
<p>1.0.0-beta86</p>
24+
<ul>
25+
<li>Support for 2021.2</li>
26+
<li>Improved support for holes by @mbwgh. See #629. </li>
27+
<li>Documentation in code completion by @fantostisch</li>
28+
</ul>
2329
<p>1.0.0-beta85</p>
2430
<ul>
2531
<li>Various improvements and fixes</li>

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.5")
1+
addSbtPlugin("org.jetbrains" % "sbt-idea-plugin" % "3.12.6")
22

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

0 commit comments

Comments
 (0)