Skip to content

Commit 67bcc96

Browse files
authored
Merge pull request #8 from 10up/release/1.0.1
Release/1.0.1
2 parents a014c0b + b915a6b commit 67bcc96

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@ All notable changes to this project will be documented in this file, per [the Ke
44

55
## [Unreleased] - TBD
66

7+
## [1.0.1] - 2025-09-12
8+
### Fixed
9+
- Ensure multiple parameter types and duplicate hooks are handled properly (props [@dkotter](https://github.com/dkotter), [@iamdharmesh](https://github.com/iamdharmesh) via [#6](https://github.com/10up/wp-hooks-documentor/pull/6))
10+
711
## [1.0.0] - 2025-08-21
812

913
- Initial Release 🎉
1014

1115
[Unreleased]: https://github.com/10up/wp-hooks-documentor/compare/trunk...develop
16+
[1.0.1]: https://github.com/10up/wp-hooks-documentor/compare/1.0.0..1.0.1
1217
[1.0.0]: https://github.com/10up/wp-hooks-documentor/tree/1.0.0

README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,11 @@ The tool uses a single configuration file (`wp-hooks-doc.json`) to control all a
5353
"organizationName": "username",
5454
"projectName": "repo",
5555
"input": ".",
56-
"ignoreFiles": [],
56+
"ignoreFiles": [
57+
"/tests/",
58+
"/vendor/",
59+
"/node_modules/"
60+
],
5761
"ignoreHooks": [],
5862
"outputDir": "./wp-hooks-docs",
5963
"templatesDir": "./.wp-hooks-docs/template",

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@10up/wp-hooks-documentor",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "WordPress Plugin Hook Documentation Generator",
55
"main": "dist/cli.js",
66
"bin": {

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const defaultConfig: WPHooksDocConfig = {
2727
program
2828
.name('wp-hooks-documentor')
2929
.description('Generate documentation for Plugin hooks')
30-
.version('1.0.0');
30+
.version('1.0.1');
3131

3232
program
3333
.command('generate')

0 commit comments

Comments
 (0)