From 48853828a93fd0f56a13101cfdfb2639fe9fe0c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BChler?= Date: Sat, 24 Sep 2016 17:41:18 +0200 Subject: [PATCH] Release/0.8.0 (#72) * version bump * changelog * readme --- CHANGELOG.md | 5 ++++- README.md | 18 ++++++++++++++---- package.json | 2 +- 3 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index eaeb0eb..b16a867 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + +## [0.8.0] #### Added - Support for multiline imports ([#60](https://github.com/buehler/typescript-hero/issues/60)) - Added setting for multiline threshold @@ -81,7 +83,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Various bugs in AST parsing -[Unreleased]: https://github.com/buehler/typescript-hero/compare/v0.7.1...master +[Unreleased]: https://github.com/buehler/typescript-hero/compare/v0.8.0...master +[0.8.0]: https://github.com/buehler/typescript-hero/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/buehler/typescript-hero/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/buehler/typescript-hero/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/buehler/typescript-hero/compare/v0.5.4...v0.6.0 diff --git a/README.md b/README.md index 116dac7..1fdd7a7 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,8 @@ work with typescript. ## Features at a glance +Here is a brief list, of what TypeScript Hero is capable of: + - Add imports of your project or libraries to your current file - Add an import for the current name under the cursor - Intellisense that suggests symbols and automatically adds the needed imports @@ -86,8 +88,16 @@ Please visit [the issue list](https://github.com/buehler/typescript-hero/issues) This section will cover the newest release, for the rest of the changelog, please visit the [CHANGELOG](https://github.com/buehler/typescript-hero/blob/master/CHANGELOG.md) -### 0.7.1 +### 0.8.0 +#### Added +- Support for multiline imports ([#60](https://github.com/buehler/typescript-hero/issues/60)) +- Added setting for multiline threshold +- Configurable new import location (at top of the file or at the cursor position) ([#41](https://github.com/buehler/typescript-hero/issues/41)) +- Asks for alias if a specifier is already present ([#44](https://github.com/buehler/typescript-hero/issues/44)) + #### Fixed -- Code completions does show when user types ([#55](https://github.com/buehler/typescript-hero/issues/55)) -- Default exports and imports are working ([#40](https://github.com/buehler/typescript-hero/issues/40)) -- New created files are correctly indexed now ([#46](https://github.com/buehler/typescript-hero/issues/46)) +- Autocomplete does not suggest items that are already imported ([#64](https://github.com/buehler/typescript-hero/issues/64)) +- Autocomplete does not suggest items of the own file ([#61](https://github.com/buehler/typescript-hero/issues/61)) +- Does not generate duplicates when multiline imports are used ([#43](https://github.com/buehler/typescript-hero/issues/43)) +- Multiline imports were not working with multiple imports +- Autocomplete does not add other classes from a file as well diff --git a/package.json b/package.json index e93f4bd..c0e6ba0 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "color": "#1e324c", "theme": "dark" }, - "version": "0.7.1", + "version": "0.8.0", "publisher": "rbbit", "engines": { "vscode": "^1.5.0",