Prepare for new releases (#173)

* Prepare for new releases

* More accurate changelog
This commit is contained in:
Moritz Kiefer 2019-10-20 17:57:34 -04:00 committed by GitHub
parent 23142e3cec
commit 58b997d1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 25 additions and 12 deletions

View File

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

View File

@ -4,7 +4,7 @@ Note: `ghcide` was previously called `hie-core`.
Our vision is that you should build an IDE by combining:
<img style="float:right;" src="img/vscode2.png"/>
![vscode](https://raw.githubusercontent.com/digital-asset/ghcide/master/img/vscode2.png)
* [`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;
* `ghcide` (i.e. this library) for defining how to type check, when to type check, and producing diagnostic messages;

View File

@ -1,3 +0,0 @@
A very simple haskell ide core frontend. More or less a bare bones LSP interface.
To get it working run `npm install`, `code .` then press F5 to run.

1
extension/README.md Symbolic link
View File

@ -0,0 +1 @@
../README.md

View File

@ -1,6 +1,6 @@
{
"name": "ghcide",
"version": "0.0.1",
"version": "0.0.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
@ -658,9 +658,9 @@
"dev": true
},
"vsce": {
"version": "1.67.1",
"resolved": "https://registry.npmjs.org/vsce/-/vsce-1.67.1.tgz",
"integrity": "sha512-Y/0fnfaLs2cCfytTGmy4Cp1bf9BaxHO7020YePdUwxjAlPlZ9+lm74M9yEFEWXTIug0L0sMax1WMz0TnozIqxg==",
"version": "1.68.0",
"resolved": "https://registry.npmjs.org/vsce/-/vsce-1.68.0.tgz",
"integrity": "sha512-yFbRYu4x4GbdQzZdEQQeRJBxgPdummgcUOFHUtnclW8XQl3MTuKgXL3TtI09gb5oq7jE6kdyvBmpBcmDGsmhcQ==",
"dev": true,
"requires": {
"azure-devops-node-api": "^7.2.0",

View File

@ -4,10 +4,10 @@
"publisher": "DigitalAssetHoldingsLLC",
"repository": {
"type": "git",
"url": "https://github.com/digitalasset/daml.git"
"url": "https://github.com/digital-asset/ghcide.git"
},
"description": "A simple extension to test out haskell ide core",
"version": "0.0.1",
"version": "0.0.2",
"license": "Apache-2.0",
"engines": {
"vscode": "^1.35.0"
@ -67,6 +67,6 @@
"@types/vscode": "1.35.0",
"tslint": "^5.12.1",
"typescript": "^3.6.3",
"vsce": "^1.66.0"
"vsce": "^1.68.0"
}
}

View File

@ -2,7 +2,7 @@ cabal-version: 1.20
build-type: Simple
category: Development
name: ghcide
version: 0.0.3
version: 0.0.4
license: Apache-2.0
license-file: LICENSE
author: Digital Asset