Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add Changelog #140

Merged
merged 2 commits into from
Dec 10, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 48 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Changelog

## v0.2.1 (2018-12-10)

#### :bug: Bug Fix
* [#129](https://github.com/emberwatch/ember-language-server/pull/129) Fix "Go to Definition" for windows ([@HodofHod](https://github.com/HodofHod))

#### :house: Internal
* [#126](https://github.com/emberwatch/ember-language-server/pull/126) Update `fsevents` subdependency to v1.2.4 ([@Turbo87](https://github.com/Turbo87))
* [#125](https://github.com/emberwatch/ember-language-server/pull/125) yarn: Add `integrity` hashes ([@Turbo87](https://github.com/Turbo87))

#### Committers: 2
- Tobias Bieniek ([@Turbo87](https://github.com/Turbo87))
- [@HodofHod](https://github.com/HodofHod)


## v0.2.0 (2018-04-24)

#### :rocket: Enhancement
* [#111](https://github.com/emberwatch/ember-language-server/pull/111) Remove file index ([@t-sauer](https://github.com/t-sauer))
* [#104](https://github.com/emberwatch/ember-language-server/pull/104) Update all outdated dependencies ([@t-sauer](https://github.com/t-sauer))
* [#85](https://github.com/emberwatch/ember-language-server/pull/85) Dependencies upgrade ([@t-sauer](https://github.com/t-sauer))

#### :house: Internal
* [#113](https://github.com/emberwatch/ember-language-server/pull/113) Replace esprima with Babylon ([@t-sauer](https://github.com/t-sauer))
* [#110](https://github.com/emberwatch/ember-language-server/pull/110) Don't use the fileindex for completion request ([@t-sauer](https://github.com/t-sauer))
* [#109](https://github.com/emberwatch/ember-language-server/pull/109) Run tests on Node 7 and 8 ([@t-sauer](https://github.com/t-sauer))
* [#108](https://github.com/emberwatch/ember-language-server/pull/108) Added integration tests for all features ([@t-sauer](https://github.com/t-sauer))
* [#107](https://github.com/emberwatch/ember-language-server/pull/107) Migrate tests to use Jest ([@t-sauer](https://github.com/t-sauer))
* [#106](https://github.com/emberwatch/ember-language-server/pull/106) Basic integration testing ([@t-sauer](https://github.com/t-sauer))

#### Committers: 2
- Ricardo Mendes ([@locks](https://github.com/locks))
- Thomas Sauer ([@t-sauer](https://github.com/t-sauer))


## v0.1.1 (2017-11-15)

#### :rocket: Enhancement
* [#74](https://github.com/emberwatch/ember-language-server/pull/74) Upgraded dependencies ([@t-sauer](https://github.com/t-sauer))

#### :memo: Documentation
* [#79](https://github.com/emberwatch/ember-language-server/pull/79) mention the atom plugin in the README ([@caseywatts](https://github.com/caseywatts))

#### Committers: 3
- Casey Watts ([@caseywatts](https://github.com/caseywatts))
- Josa Gesell ([@josa42](https://github.com/josa42))
- Thomas Sauer ([@t-sauer](https://github.com/t-sauer))
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
"Thomas Sauer <t-sauer@outlook.de>"
],
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/emberwatch/ember-language-server.git"
},
"engines": {
"node": "*"
},
Expand All @@ -30,13 +34,15 @@
"@types/jest": "^22.2.3",
"@types/node": "^9.3.0",
"jest": "^22.4.3",
"lerna-changelog": "^0.8.2",
"ts-jest": "^22.4.3",
"tslint": "^5.9.1",
"typescript": "^2.8.1",
"vscode-jsonrpc": "^3.6.1",
"vscode-languageserver-protocol": "^3.7.1"
},
"scripts": {
"changelog": "lerna-changelog",
"clean": "rm -rf lib/",
"compile": "tsc -p .",
"lint": "tslint --project ./tsconfig.json",
Expand Down
Loading