Skip to content

Commit 58b997d

Browse files
authored
Prepare for new releases (#173)
* Prepare for new releases * More accurate changelog
1 parent 23142e3 commit 58b997d

File tree

6 files changed

+25
-12
lines changed

6 files changed

+25
-12
lines changed

Diff for: CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
11
### unreleased
22

3+
### 0.0.4 (2019-10-20)
4+
5+
* Add a ``--version`` cli option (thanks @jacg)
6+
* Update to use progress reporting as defined in LSP 3.15. The VSCode
7+
extension has also been updated and should now be making use of
8+
this.
9+
* Properly declare that we should support code actions. This helps
10+
with some clients that rely on this information to enable code
11+
actions (thanks @jacg).
12+
* Fix a race condition caused by sharing the finder cache between
13+
concurrent compilations.
14+
* Avoid normalizing include dirs. This avoids issues where the same
15+
file ends up twice in the module graph, e.g., with different casing
16+
for drive letters.
17+
318
### 0.0.3 (2019-09-21)

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Note: `ghcide` was previously called `hie-core`.
44

55
Our vision is that you should build an IDE by combining:
66

7-
<img style="float:right;" src="img/vscode2.png"/>
7+
![vscode](https://raw.githubusercontent.com/digital-asset/ghcide/master/img/vscode2.png)
88

99
* [`hie-bios`](https://github.com/mpickering/hie-bios) for determining where your files are, what are their dependencies, what extensions are enabled and so on;
1010
* `ghcide` (i.e. this library) for defining how to type check, when to type check, and producing diagnostic messages;

Diff for: extension/README.md

-3
This file was deleted.

Diff for: extension/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

Diff for: extension/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: extension/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
"publisher": "DigitalAssetHoldingsLLC",
55
"repository": {
66
"type": "git",
7-
"url": "https://github.com/digitalasset/daml.git"
7+
"url": "https://github.com/digital-asset/ghcide.git"
88
},
99
"description": "A simple extension to test out haskell ide core",
10-
"version": "0.0.1",
10+
"version": "0.0.2",
1111
"license": "Apache-2.0",
1212
"engines": {
1313
"vscode": "^1.35.0"
@@ -67,6 +67,6 @@
6767
"@types/vscode": "1.35.0",
6868
"tslint": "^5.12.1",
6969
"typescript": "^3.6.3",
70-
"vsce": "^1.66.0"
70+
"vsce": "^1.68.0"
7171
}
7272
}

Diff for: ghcide.cabal

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cabal-version: 1.20
22
build-type: Simple
33
category: Development
44
name: ghcide
5-
version: 0.0.3
5+
version: 0.0.4
66
license: Apache-2.0
77
license-file: LICENSE
88
author: Digital Asset

0 commit comments

Comments
 (0)