Skip to content

Commit

Permalink
3.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
hegemonic committed Sep 20, 2020
1 parent 95e3192 commit 3f5c462
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 3 deletions.
16 changes: 16 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
This file describes notable changes in each version of JSDoc 3.


## 3.6.6 (September 2020)

Fixes an issue that could cause members of an interface to be tracked incorrectly if the interface
was both defined as an ES2015 class and assigned to a variable. For example:

```js
/** @interface */
foo.Bar = class {
constructor() {
/** This member was missing from the generated docs. */
this.baz = null;
}
}
```


## 3.6.5 (July 2020)

Prevents circular references in doclets when two function parameters use the same type expression,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "jsdoc",
"version": "3.6.5",
"revision": "1595462156621",
"version": "3.6.6",
"revision": "1600568714547",
"description": "An API documentation generator for JavaScript.",
"keywords": [
"documentation",
Expand Down

0 comments on commit 3f5c462

Please sign in to comment.