Skip to content

Commit

Permalink
Merge branch 'release/1.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
remcotolsma committed Jul 18, 2022
2 parents 44b4d32 + 53ef36e commit 3fbe570
Show file tree
Hide file tree
Showing 17 changed files with 6,184 additions and 3,302 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2022-07-18
### Fixed
- Files can now also be excluded via the `--exclude` option. ( [#13](https://github.com/pronamic/wp-documentor/issues/13) )

### Added
- Added support for the `@ignore` tag. ( [#14](https://github.com/pronamic/wp-documentor/issues/14) )

## [1.2.0] - 2022-01-27
### Fixed
- List of arguments is empty when `apply_filters` is returned instead of assigned to variable (props [@LuigiPulcini](https://github.com/LuigiPulcini)). ( [#11](https://github.com/pronamic/wp-documentor/issues/11) )
Expand All @@ -30,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First Release.

[Unreleased]: https://github.com/pronamic/wp-documentor/compare/1.2.0...HEAD
[Unreleased]: https://github.com/pronamic/wp-documentor/compare/1.3.0...HEAD
[1.3.0]: https://github.com/pronamic/wp-documentor/compare/1.2.0...1.3.0
[1.2.0]: https://github.com/pronamic/wp-documentor/compare/1.1.1...1.2.0
[1.1.1]: https://github.com/pronamic/wp-documentor/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/pronamic/wp-documentor/compare/1.0.0...1.1.0
Expand Down
2 changes: 1 addition & 1 deletion bin/wp-documentor
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ $application->register( 'parse' )
$exclude = $input->getOption( 'exclude' );

if ( null !== $exclude ) {
$finder->exclude( $exclude );
$finder->notPath( $exclude );
}

/**
Expand Down
4 changes: 3 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@
"bin/wp-documentor parse tests/source --format=phpdocumentor-rst --type=filters --relative=tests/docs --output=tests/docs/phpdocumentor-filters.rst",
"bin/wp-documentor parse wordpress --format=markdown --relative=tests/docs --memory-limit=-1 --output=tests/docs/wordpress-hooks.md",
"bin/wp-documentor parse tests/issue-10 --format=markdown --output=tests/issue-10/hooks.md --prefix=prefix_1 --prefix=prefix_2",
"bin/wp-documentor parse tests/issue-11 --format=markdown --output=tests/issue-11/hooks.md"
"bin/wp-documentor parse tests/issue-11 --format=markdown --output=tests/issue-11/hooks.md",
"bin/wp-documentor parse tests/issue-13 --exclude=file-exclude.php --exclude=folder-exclude/ --format=markdown --output=tests/issue-13/hooks.md",
"bin/wp-documentor parse tests/issue-14 --format=markdown --output=tests/issue-14/hooks.md"
]
},
"require-dev": {
Expand Down
Loading

0 comments on commit 3fbe570

Please sign in to comment.