Skip to content
This repository has been archived by the owner on Mar 1, 2023. It is now read-only.

build : added changelog #27

Merged
merged 1 commit into from
Oct 15, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .changelog
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ return [
new ChangelogConfig(
'narrowspark',
'testing-helper',
'v8.0.1',
'v8.0.2',
['Added', 'Changed', 'Deprecated', 'Removed', 'Fixed', 'Security']
)
];
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
v8.0.2
======

- Total issues resolved: **0**
- Total pull requests resolved: **1**
- Total contributors: **1**

Fixed
-----

- [26: fix : added removed phpunit InvalidArgumentHelper](https://github.com/narrowspark/testing-helper/pull/26) thanks to @prisis

v8.0.1
======

Expand All @@ -9,4 +21,3 @@ Changed
-------

- [22: style fixes](https://github.com/narrowspark/testing-helper/pull/22) thanks to @prisis

4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"changelog": "changelog-generator generate --config=\".changelog\" --file --append",
"changelog": "changelog-generator generate --config=\".changelog\" --file --prepend",
"coverage": "phpunit --coverage-html=\"build/logs\"",
"cs": "php-cs-fixer fix",
"cs": "php-cs-fixer fix -v",
"cs-check": "php-cs-fixer fix -v --dry-run --stop-on-violation",
"phpstan": "phpstan analyse -c phpstan.neon src --memory-limit=-1",
"test": "phpunit"
Expand Down