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

Commit ddd24dc

Browse files
authored
feat : updated changelog (#147)
* feat : updated changelog * feat : updated pull request template
1 parent 55ca7f7 commit ddd24dc

File tree

8 files changed

+49
-9
lines changed

8 files changed

+49
-9
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
11
| Q | A
22
| ------------- | ---
3-
| Branch? | master for features
3+
| Branch? | master <!-- for features -->
44
| Bug fix? | yes/no
55
| New feature? | yes/no
66
| Deprecations? | yes/no <!-- don't forget to update UPGRADE-*.md files -->
77
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", if any -->
88
| License | MIT
9-
| Doc PR | narrowspark/docs#... <!--highly recommended for new features-->
9+
| Doc PR | yes/no <!--highly recommended for new features-->
1010

1111
<!--
1212
Replace this notice by a short README for your feature/bugfix. This will help people
1313
understand your PR and can be used as a start for the documentation.
1414
1515
Additionally:
1616
- Always add tests and ensure they pass.
17-
- Never break backward compatibility
17+
- Update or add documentation if there are missing.
18+
- Never break backward compatibility.
1819
- Bug fixes must be submitted against the lowest branch where they apply
1920
(lowest branches are regularly merged to upper ones so they get the fixes too).
2021
- Features and deprecations must be submitted against the branch "master".

CHANGELOG.md

+39
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
v0.13.0
2+
=======
3+
4+
- Total issues resolved: **3**
5+
- Total pull requests resolved: **9**
6+
- Total contributors: **1**
7+
8+
Added
9+
-----
10+
11+
- [145: feat : added no-dev mode to audit command](https://github.com/narrowspark/automatic/pull/145) thanks to @prisis
12+
- [140: feat : adding github actions](https://github.com/narrowspark/automatic/pull/140) thanks to @prisis
13+
14+
Added,Changed
15+
-------------
16+
17+
- [130: build : create a new composer package prefetcher plugin out of automatic](https://github.com/narrowspark/automatic/issues/130) thanks to @prisis
18+
19+
Changed
20+
-------
21+
22+
- [132: docs : follow google docs standard and fixed loading of aliases](https://github.com/narrowspark/automatic/pull/132) thanks to @prisis
23+
- [127: feat : upgrade narrowspark/coding-standard to v3](https://github.com/narrowspark/automatic/issues/127) thanks to @prisis
24+
25+
Changed,Fixed
26+
-------------
27+
28+
- [119: Fixed emoji output - cannot declare class because of require&#95;once](https://github.com/narrowspark/automatic/pull/119) thanks to @prisis
29+
30+
Fixed
31+
-----
32+
33+
- [146: fix : fixed class&#95;alias use call](https://github.com/narrowspark/automatic/pull/146) thanks to @prisis
34+
- [144: Added check for isDevMode in the security plugin](https://github.com/narrowspark/automatic/pull/144) thanks to @prisis
35+
- [137: fix : fixed incorrect interface on curl downloader](https://github.com/narrowspark/automatic/pull/137) thanks to @prisis
36+
- [136: fix : downloader check in ParallelDownloader](https://github.com/narrowspark/automatic/pull/136) thanks to @prisis
37+
- [134: fix : removed trait call in prefetcher plugin](https://github.com/narrowspark/automatic/pull/134) thanks to @prisis
38+
- [128: Skip parallel downloader for local files](https://github.com/narrowspark/automatic/issues/128) thanks to @prisis
39+
140
v0.12.0
241
=======
342

src/Automatic/Automatic.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ class Automatic implements EventSubscriberInterface, PluginInterface
7979
use GetGenericPropertyReaderTrait;
8080

8181
/** @var string */
82-
public const VERSION = '0.12.0';
82+
public const VERSION = '0.13.0';
8383

8484
/** @var string */
8585
public const LOCK_CLASSMAP = 'classmap';

src/Common/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">Narrowspark Automatic</h1>
1+
<h1 align="center">Narrowspark Automatic Common</h1>
22
<p align="center">
33
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
44
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>

src/Prefetcher/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
class Plugin implements EventSubscriberInterface, PluginInterface
6464
{
6565
/** @var string */
66-
public const VERSION = '0.12.0';
66+
public const VERSION = '0.13.0';
6767

6868
/** @var string */
6969
public const COMPOSER_EXTRA_KEY = 'prefetcher';

src/Prefetcher/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">Narrowspark Automatic</h1>
1+
<h1 align="center">Narrowspark Automatic Prefetcher</h1>
22
<p align="center">
33
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
44
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>

src/Security/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
class Plugin implements Capable, EventSubscriberInterface, PluginInterface
5454
{
5555
/** @var string */
56-
public const VERSION = '0.12.0';
56+
public const VERSION = '0.13.0';
5757

5858
/** @var string */
5959
public const COMPOSER_EXTRA_KEY = 'audit';

src/Security/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">Narrowspark Automatic</h1>
1+
<h1 align="center">Narrowspark Automatic Security Audit</h1>
22
<p align="center">
33
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
44
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>

0 commit comments

Comments
 (0)