Skip to content

Commit

Permalink
prepared release v1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Maximilian Wehrstedt committed Aug 22, 2018
1 parent 2f8b330 commit e14a855
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry = "https://registry.npmjs.org"
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
## Changelog

# v1.0.3
New features in this release:
- Support for object key and property description (see [#25](https://github.com/otris/jsdoc-tsd/issues/25))

Bugfixes:
- Generic types were not mapped correctly, e.g.
```js
/**
* @function f1
* @param {Promise<*>} myParam
*/
```
were mapped to
```ts
f1(myParam: Promise.<*>)
```
which is not valid typescript (see [#38](https://github.com/otris/jsdoc-tsd/issues/38))

# v1.0.2
Bugfixes:
- Modules can now contain unexported members. You can use the @inner and @static annotation
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@otris/jsdoc-tsd",
"version": "1.0.2",
"version": "1.0.3",
"description": "JSDoc Template for generate typescript definition files from JSDoc comments",
"main": "src-out/core/publish.js",
"repository": {
Expand Down

0 comments on commit e14a855

Please sign in to comment.