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

Commit 6fe5da2

Browse files
committed
added changelog
1 parent 222b065 commit 6fe5da2

File tree

4 files changed

+290
-8
lines changed

4 files changed

+290
-8
lines changed

Diff for: .changelog

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
declare(strict_types=1);
3+
4+
use ChangelogGenerator\ChangelogConfig;
5+
6+
return [
7+
(new ChangelogConfig(
8+
'narrowspark',
9+
'automatic',
10+
'v0.2.0',
11+
['Added', 'Changed', 'Deprecated', 'Removed', 'Fixed', 'Security']
12+
))
13+
];

Diff for: CHANGELOG.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
## v0.2.0
2+
3+
- Total issues resolved: **1**
4+
- Total pull requests resolved: **0**
5+
- Total contributors: **1**
6+
7+
### Changed
8+
9+
- [27: Rename discovery to automatic](https://github.com/narrowspark/automatic/issues/27) thanks to @prisis
10+
11+
# Changelog
12+
13+
## v0.1.0
14+
15+
- Total issues resolved: **6**
16+
- Total pull requests resolved: **0**
17+
- Total contributors: **1**
18+
19+
### Added
20+
21+
- [12: Adding a ConfiguratorInstaller](https://github.com/narrowspark/automatic/issues/12) thanks to @prisis
22+
- [11: Adding a ParallelDownloader to achieve high speed downloads](https://github.com/narrowspark/automatic/issues/11) thanks to @prisis
23+
- [10: Honor --dry-run flag for discovery](https://github.com/narrowspark/automatic/issues/10) thanks to @prisis
24+
- [8: Add a new configurator for extra dependency](https://github.com/narrowspark/automatic/issues/8) thanks to @prisis
25+
- [3: Create a common package for interfaces, exceptions and external tests](https://github.com/narrowspark/automatic/issues/3) thanks to @prisis
26+
27+
### Changed
28+
29+
- [23: Update text](https://github.com/narrowspark/automatic/issues/23) thanks to @prisis

Diff for: composer.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"require-dev": {
2929
"composer/composer": "^1.6.0",
3030
"mockery/mockery": "^1.0.0",
31-
"narrowspark/coding-standard": "^1.0.0",
31+
"narrowspark/coding-standard": "^1.1.0",
3232
"narrowspark/testing-helper": "^6.0.0",
3333
"phpunit/phpunit": "^7.2.0",
3434
"symfony/phpunit-bridge": "^4.0.8"
@@ -67,7 +67,8 @@
6767
"coverage": "phpunit --coverage-html=\"build/logs\"",
6868
"cs": "php-cs-fixer fix",
6969
"phpstan": "phpstan analyse -c phpstan.neon -l 7 src --memory-limit=-1",
70-
"test": "phpunit"
70+
"test": "phpunit",
71+
"changelog": "changelog-generator generate --config=\".changelog\" --file --prepend"
7172
},
7273
"support": {
7374
"issues": "https://github.com/narrowspark/automatic/issues",

Diff for: composer.lock

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

0 commit comments

Comments
 (0)