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

Commit 53a6872

Browse files
committed
Bump version
1 parent cc9492d commit 53a6872

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ This plugin depends mainly on Stack. It can create new Stack projects and import
1313

1414
GHC 8.2 and later is supported.
1515

16-
The plugin expects that the Stack executable is on the PATH.
17-
A Haskell project does **not** depend on a SDK.
18-
1916
Any feedback is welcomed!!
2017

2118
# GitHub Sponsors
@@ -98,13 +95,13 @@ Alternative way to install the latest beta version is to download `intellij-hask
9895
- If you don't already have IntelliJ, [download it](https://www.jetbrains.com/idea/download/) - the Community Edition is sufficient.
9996
- Install this plugin using the [Jetbrains plugin repository](https://plugins.jetbrains.com/idea/plugin/8258-intellij-haskell): `Settings`/`Plugins`/`Browse repositories`/`Intellij-Haskell`. Make sure no other Haskell plugin is installed in IntelliJ;
10097
- Install latest version of [Stack](https://github.com/commercialhaskell/stack); use `stack upgrade` to confirm you are on the latest version.
101-
- Make sure the stack executable is on the PATH.
10298
- Setup the project:
10399
- Make sure your Stack project builds without errors. Preferably by using: `stack build --test --haddock --no-haddock-hyperlink-source`;
104100
- After your project is built successfully, import an existing project by:
105101
- Inside IntelliJ use `File`>`New`>`Project from Existing Sources...` from the IntelliJ menu;
106102
- In the `Welcome to IntelliJ IDEA` dialog use `Open or Import Project`;
107103
- In the `New Project` wizard select `Import project from external model` and check `Haskell Stack`;
104+
- In next page of wizard configure `Project SDK` by configuring `Haskell Tool Stack` with selecting path to `stack` binary, e.g. `/usr/local/bin/stack` (you can use `which stack` on Linux or macOS or `where stack` on windows to find the path);
108105
- Finish wizard and project will be opened;
109106
- Wizard will automatically configure which folders are sources, test and which to exclude;
110107
- Plugin will automatically build Haskell Tools (HLint, Hoogle, Ormolu and Stylish Haskell) to prevent incompatibility issues

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-beta77",
2+
version := "1.0.0-beta78",
33
scalaVersion := "2.13.3"
44
)
55

intellij-haskell/META-INF/plugin.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
<idea-plugin>
22
<id>intellij.haskell</id>
33
<name>IntelliJ-Haskell</name>
4-
<version>1.0.0-beta77</version>
4+
<version>1.0.0-beta78</version>
55
<vendor email="rikvdkleij@gmail.com">Rik van der Kleij</vendor>
66

77
<description><![CDATA[
88
<p> Haskell language support.</p>
99
<ul>
1010
<li>This plugin depends mainly on Stack.</li>
1111
<li>It can create new Stack projects and import existing Stack projects.</li>
12-
<li>After installing Stack make that the stack executable is on the PATH.</li>
13-
<li>A Haskell project does <strong>not</strong> depend on a SDK.</li>
1412
<li>Please <a href="https://github.com/rikvdkleij/intellij-haskell/blob/master/README.md">README</a></li>
1513
</ul>
1614
@@ -22,6 +20,11 @@
2220
]]></description>
2321

2422
<change-notes><![CDATA[
23+
<p>1.0.0-beta78</p>
24+
<ul>
25+
<li>Reverted the change which removed the Haskell SDK.</li>
26+
<li>Improvements and fixes in (smart) code completion.</li>
27+
</ul>
2528
<p>1.0.0-beta77</p>
2629
<ul>
2730
<li>Better support for stack executable on the PATH</li>

0 commit comments

Comments
 (0)