Skip to content

Commit e40a9ce

Browse files
committed
Version bump.
Updated CHANGELOG.md
1 parent 578960b commit e40a9ce

File tree

31 files changed

+113
-100
lines changed

31 files changed

+113
-100
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [v4.0.0-preview.17](https://github.com/docsbydoxdox/doxdox/tree/v4.0.0-preview.17) - (2022-10-09)
4+
5+
[Full Changelog](https://github.com/docsbydoxdox/doxdox/compare/v4.0.0-preview.16...v4.0.0-preview.17)
6+
7+
- [hotfix] Prevent matching jsdoc syntax in the middle of a line. [#206](https://github.com/docsbydoxdox/doxdox/pull/206)
8+
- [feat] Switched to using super-regex for matching. [#205](https://github.com/docsbydoxdox/doxdox/pull/205)
9+
- [hotfix] Updated packages. [#204](https://github.com/docsbydoxdox/doxdox/pull/204)
10+
- [hotfix] Updated packages. [#203](https://github.com/docsbydoxdox/doxdox/pull/203)
11+
- [hotfix] Updated template package parser method to match other parsers. [#202](https://github.com/docsbydoxdox/doxdox/pull/202)
12+
- [hotfix] Updated packages. [#201](https://github.com/docsbydoxdox/doxdox/pull/201)
13+
- [hotfix] Switched test to use jest snapshots rather than hand written results. [#200](https://github.com/docsbydoxdox/doxdox/pull/200)
14+
- [hotfix] Move pattern match util to core [#199](https://github.com/docsbydoxdox/doxdox/pull/199)
15+
316
## [v4.0.0-preview.16](https://github.com/docsbydoxdox/doxdox/tree/v4.0.0-preview.16) - (2022-09-19)
417

518
[Full Changelog](https://github.com/docsbydoxdox/doxdox/compare/v4.0.0-preview.15...v4.0.0-preview.16)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ doxdox also features support for extendibility via custom plugins for both parsi
4343
### Globally
4444

4545
```bash
46-
$ npm install doxdox-cli@v4.0.0-preview.16 -g
46+
$ npm install doxdox-cli@v4.0.0-preview.17 -g
4747
```
4848

4949
### Locally
5050

5151
```bash
52-
$ npm install doxdox-cli@v4.0.0-preview.16 --save-dev
52+
$ npm install doxdox-cli@v4.0.0-preview.17 --save-dev
5353
```
5454

5555
## Usage
@@ -160,7 +160,7 @@ Included Layouts:
160160
For more information on NPM run scripts visit <https://docs.npmjs.com/cli/v8/commands/npm-run-script>.
161161

162162
```bash
163-
$ npm install doxdox-cli@v4.0.0-preview.16 --save-dev
163+
$ npm install doxdox-cli@v4.0.0-preview.17 --save-dev
164164
```
165165

166166
```json

package-lock.json

Lines changed: 47 additions & 47 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/doxdox-cli/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
## Install
1010

1111
```bash
12-
$ npm install doxdox-cli@v4.0.0-preview.16 --save-dev
12+
$ npm install doxdox-cli@v4.0.0-preview.17 --save-dev
1313
```

packages/doxdox-cli/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "doxdox-cli",
33
"description": "CLI package for doxdox.",
4-
"version": "4.0.0-preview.16",
4+
"version": "4.0.0-preview.17",
55
"bin": {
66
"doxdox": "./dist/src/index.js"
77
},
@@ -12,11 +12,11 @@
1212
"node": "^14.18.0 || ^16.10.0 || >=18.0.0"
1313
},
1414
"dependencies": {
15-
"doxdox-core": "4.0.0-preview.16",
16-
"doxdox-parser-jsdoc": "4.0.0-preview.16",
17-
"doxdox-renderer-bootstrap": "4.0.0-preview.16",
18-
"doxdox-renderer-json": "4.0.0-preview.16",
19-
"doxdox-renderer-markdown": "4.0.0-preview.16",
15+
"doxdox-core": "4.0.0-preview.17",
16+
"doxdox-parser-jsdoc": "4.0.0-preview.17",
17+
"doxdox-renderer-bootstrap": "4.0.0-preview.17",
18+
"doxdox-renderer-json": "4.0.0-preview.17",
19+
"doxdox-renderer-markdown": "4.0.0-preview.17",
2020
"globby": "13.1.2",
2121
"import-from": "4.0.0",
2222
"parse-cmd-args": "4.1.0",

packages/doxdox-core/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
## Install
1010

1111
```bash
12-
$ npm install doxdox-core@v4.0.0-preview.16 doxdox-parser-jsdoc@v4.0.0-preview.16 doxdox-renderer-markdown@v4.0.0-preview.16 --save-dev
12+
$ npm install doxdox-core@v4.0.0-preview.17 doxdox-parser-jsdoc@v4.0.0-preview.17 doxdox-renderer-markdown@v4.0.0-preview.17 --save-dev
1313
```

packages/doxdox-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "doxdox-core",
33
"description": "Core package for doxdox.",
4-
"version": "4.0.0-preview.16",
4+
"version": "4.0.0-preview.17",
55
"exports": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"type": "module",

packages/doxdox-parser-custom/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
## Install
1010

1111
```bash
12-
$ npm install doxdox-cli@v4.0.0-preview.16 doxdox-parser-custom@v4.0.0-preview.16 --save-dev
12+
$ npm install doxdox-cli@v4.0.0-preview.17 doxdox-parser-custom@v4.0.0-preview.17 --save-dev
1313
```

0 commit comments

Comments
 (0)