Skip to content

Commit 0842185

Browse files
committedNov 3, 2022
4.0.0
1 parent b018408 commit 0842185

File tree

4 files changed

+20
-17
lines changed

4 files changed

+20
-17
lines changed
 

‎CHANGES.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
1-
# JSDoc 3 change history
1+
# JSDoc change history
22

3-
This file describes notable changes in each version of JSDoc 3.
3+
This file describes notable changes in each version of JSDoc, starting with version 3.0.0.
4+
5+
6+
## 4.0.0 (November 2022)
7+
8+
+ JSDoc releases now use [semantic versioning](https://semver.org/). If JSDoc makes
9+
backwards-incompatible changes in the future, the major version will be incremented.
10+
+ JSDoc no longer uses the [`taffydb`](https://taffydb.com/) package. If your JSDoc template or
11+
plugin uses the `taffydb` package, see the
12+
[instructions for replacing `taffydb` with `@jsdoc/salty`](https://github.com/jsdoc/jsdoc/tree/main/packages/jsdoc-salty#use-salty-in-a-jsdoc-template).
13+
+ JSDoc now supports Node.js 12.0.0 and later.
414

515

616
## 3.6.11 (July 2022)

‎README.md

+4-11
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ To install the latest version on npm locally and save it in your package's
2222

2323
npm install --save-dev jsdoc
2424

25-
**Note**: By default, npm adds your package using the caret operator in front of
26-
the version number (for example, `^3.6.3`). We recommend using the tilde
27-
operator instead (for example, `~3.6.3`), which limits updates to the most
28-
recent patch-level version. See
29-
[this Stack Overflow answer](https://stackoverflow.com/questions/22343224) for
30-
more information about the caret and tilde operators.
31-
3225
To install the latest development version locally, without updating your
3326
project's `package.json` file:
3427

@@ -93,8 +86,8 @@ JSDoc](https://medium.com/@kevinast/integrate-gitbook-jsdoc-974be8df6fb3)
9386

9487
## License
9588

96-
JSDoc 3 is copyright (c) 2011-present Michael Mathews <micmath@gmail.com> and
97-
the [contributors to JSDoc](https://github.com/jsdoc/jsdoc/graphs/contributors).
89+
JSDoc is copyright (c) 2011-present Michael Mathews <micmath@gmail.com> and the
90+
[contributors to JSDoc](https://github.com/jsdoc/jsdoc/graphs/contributors).
9891

99-
JSDoc 3 is free software, licensed under the Apache License, Version 2.0. See
100-
the file `LICENSE.md` in this distribution for more details.
92+
JSDoc is free software, licensed under the Apache License, Version 2.0. See the
93+
file `LICENSE.md` in this distribution for more details.

‎package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsdoc",
3-
"version": "3.6.11",
4-
"revision": "1658338843387",
3+
"version": "4.0.0",
4+
"revision": "1667500635552",
55
"description": "An API documentation generator for JavaScript.",
66
"keywords": [
77
"documentation",

0 commit comments

Comments
 (0)
Please sign in to comment.