Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
damieng committed Nov 6, 2017
2 parents 019e1e6 + 2f05098 commit 455e731
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 6 deletions.
55 changes: 55 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,55 @@
## v0.7.0

- Update language server
- Update atom language client
- Enable signature help

## v0.6.2

- Update language server
- Support document format if available
- Dependency updates
- README updates

## v0.6.1

- Various README changes

## v0.6.0

- Fix currentsuggestions errors #18
- Add support for tsx/typescript react, fixes #15
- Various README updates
- Dependency updates

## v0.1.6

- Do not throw when editing non-JS/TS files
- Switch off streaming by upgrading to language server 2.2.1
- Simplify English setting descriptions
- Remove `=>` as a split condition for method sigs

## v0.1.5

- Choice of left or right for return types in autocomplete

## v0.1.4

- Ensure functions not messed up by skipping `(`

## v0.1.3

- Split return and param signatures into left/right, fixes #7

## v0.1.2

- Multi-project autocomplete filtering
- Allow disabling of JavaScript support, fixes #5

## v0.1.1

- Fix fuzzy-find autocomplete

## v0.1.0

- First published release
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -17,7 +17,7 @@ This package is currently an early access release. You should also install the
* Find references
* Go to definition
* Hover
* Signature Help
* Signature help

## Contributing
Always feel free to help out! Whether it's [filing bugs and feature requests](https://github.com/atom/languageserver-typescript/issues/new) or working on some of the [open issues](https://github.com/atom/languageserver-typescript/issues), Atom's [contributing guide](https://github.com/atom/atom/blob/master/CONTRIBUTING.md) will help get you started while the [guide for contributing to packages](https://github.com/atom/atom/blob/master/docs/contributing-to-packages.md) has some extra information.
Expand Down
15 changes: 10 additions & 5 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "ide-typescript",
"main": "./lib/main",
"version": "0.6.2",
"version": "0.7.0",
"description": "TypeScript and JavaScript language support for Atom-IDE.",
"repository": "https://github.com/atom/ide-typescript",
"license": "MIT",
Expand Down Expand Up @@ -32,9 +32,9 @@
}
},
"dependencies": {
"atom-languageclient": "^0.6.4",
"atom-languageclient": "^0.6.7",
"fuzzaldrin-plus": "^0.5.0",
"javascript-typescript-langserver": "^2.4.0"
"javascript-typescript-langserver": "^2.5.4"
},
"enhancedScopes": [
"source.ts",
Expand All @@ -43,14 +43,19 @@
"source.js.jsx"
],
"consumedServices": {
"datatip": {
"versions": {
"0.1.0": "consumeDatatip"
}
},
"linter-indie": {
"versions": {
"2.0.0": "consumeLinterV2"
}
},
"datatip": {
"signature-help": {
"versions": {
"0.1.0": "consumeDatatip"
"0.1.0": "consumeSignatureHelp"
}
},
"signature-help": {
Expand Down

0 comments on commit 455e731

Please sign in to comment.