From 4df2d8034ff0a94b0b14124f74376b3b2fd6b608 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20B=C3=BChler?= Date: Wed, 21 Sep 2016 11:10:41 +0200 Subject: [PATCH] Release/0.7.1 (#59) * changelog * version bump * change color :) * read me --- CHANGELOG.md | 6 +++++- README.md | 21 +++++---------------- package.json | 4 ++-- 3 files changed, 12 insertions(+), 19 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e95beb5..418f4d7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,9 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] + + +## [0.7.1] #### 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)) @@ -67,7 +70,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.0...master +[Unreleased]: https://github.com/buehler/typescript-hero/compare/v0.7.1...master +[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 [0.5.4]: https://github.com/buehler/typescript-hero/compare/v0.5.0...v0.5.4 diff --git a/README.md b/README.md index 5f49215..e5a057b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Typescript Hero -`typescript hero` is a vscode extension that makes your live easier. +TypeScript Hero is a vscode extension that makes your live easier. When you are coding a lot of `TypeScript` you may want vscode to automatically include your imports. @@ -84,19 +84,8 @@ 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.0 -#### Added -- More tests! :-) ([#8](https://github.com/buehler/typescript-hero/issues/8)) -- CodeCompletionProvider that autocompletes your symbols and adds the imports if necessary ([#5](https://github.com/buehler/typescript-hero/issues/5)) -- Support for `*.tsx` files ([#42](https://github.com/buehler/typescript-hero/issues/42)) - -#### Changed -- Import under cursor does only import if it's an exact match (PR [#35](https://github.com/buehler/typescript-hero/pull/35)) -- Own imports (workspace) are sorted to the top ([#37](https://github.com/buehler/typescript-hero/issues/37)) -- Updated inversify to v2 - +### 0.7.1 #### Fixed -- On Windows, forwardslashes will be used instead of backslashes ([#19](https://github.com/buehler/typescript-hero/issues/19)) (definitly this time) -- `export xxx as yyy` does now correctly use the alias of the declaration ([#36](https://github.com/buehler/typescript-hero/issues/36)) -- Build directories are ignored by default (for indexing) ([#48](https://github.com/buehler/typescript-hero/issues/48)) -- Substructures import parent index.ts files correctly now ([#49](https://github.com/buehler/typescript-hero/issues/49)) \ No newline at end of file +- 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)) \ No newline at end of file diff --git a/package.json b/package.json index f072bba..ab7c3db 100644 --- a/package.json +++ b/package.json @@ -4,10 +4,10 @@ "description": "Additional tooling for the typescript language", "icon": "etc/icon.png", "galleryBanner": { - "color": "#7E7865", + "color": "#1e324c", "theme": "dark" }, - "version": "0.7.0", + "version": "0.7.1", "publisher": "rbbit", "engines": { "vscode": "^1.5.0",