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

Commit

Permalink
feat : updated changelog (#147)
Browse files Browse the repository at this point in the history
* feat : updated changelog

* feat : updated pull request template
  • Loading branch information
prisis authored Nov 6, 2019
1 parent 55ca7f7 commit ddd24dc
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 9 deletions.
7 changes: 4 additions & 3 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
| Q | A
| ------------- | ---
| Branch? | master for features
| Branch? | master <!-- for features -->
| Bug fix? | yes/no
| New feature? | yes/no
| Deprecations? | yes/no <!-- don't forget to update UPGRADE-*.md files -->
| Tickets | Fix #... <!-- prefix each issue number with "Fix #", if any -->
| License | MIT
| Doc PR | narrowspark/docs#... <!--highly recommended for new features-->
| Doc PR | yes/no <!--highly recommended for new features-->

<!--
Replace this notice by a short README for your feature/bugfix. This will help people
understand your PR and can be used as a start for the documentation.
Additionally:
- Always add tests and ensure they pass.
- Never break backward compatibility
- Update or add documentation if there are missing.
- Never break backward compatibility.
- Bug fixes must be submitted against the lowest branch where they apply
(lowest branches are regularly merged to upper ones so they get the fixes too).
- Features and deprecations must be submitted against the branch "master".
Expand Down
39 changes: 39 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
v0.13.0
=======

- Total issues resolved: **3**
- Total pull requests resolved: **9**
- Total contributors: **1**

Added
-----

- [145: feat : added no-dev mode to audit command](https://github.com/narrowspark/automatic/pull/145) thanks to @prisis
- [140: feat : adding github actions](https://github.com/narrowspark/automatic/pull/140) thanks to @prisis

Added,Changed
-------------

- [130: build : create a new composer package prefetcher plugin out of automatic](https://github.com/narrowspark/automatic/issues/130) thanks to @prisis

Changed
-------

- [132: docs : follow google docs standard and fixed loading of aliases](https://github.com/narrowspark/automatic/pull/132) thanks to @prisis
- [127: feat : upgrade narrowspark/coding-standard to v3](https://github.com/narrowspark/automatic/issues/127) thanks to @prisis

Changed,Fixed
-------------

- [119: Fixed emoji output - cannot declare class because of require&#95;once](https://github.com/narrowspark/automatic/pull/119) thanks to @prisis

Fixed
-----

- [146: fix : fixed class&#95;alias use call](https://github.com/narrowspark/automatic/pull/146) thanks to @prisis
- [144: Added check for isDevMode in the security plugin](https://github.com/narrowspark/automatic/pull/144) thanks to @prisis
- [137: fix : fixed incorrect interface on curl downloader](https://github.com/narrowspark/automatic/pull/137) thanks to @prisis
- [136: fix : downloader check in ParallelDownloader](https://github.com/narrowspark/automatic/pull/136) thanks to @prisis
- [134: fix : removed trait call in prefetcher plugin](https://github.com/narrowspark/automatic/pull/134) thanks to @prisis
- [128: Skip parallel downloader for local files](https://github.com/narrowspark/automatic/issues/128) thanks to @prisis

v0.12.0
=======

Expand Down
2 changes: 1 addition & 1 deletion src/Automatic/Automatic.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class Automatic implements EventSubscriberInterface, PluginInterface
use GetGenericPropertyReaderTrait;

/** @var string */
public const VERSION = '0.12.0';
public const VERSION = '0.13.0';

/** @var string */
public const LOCK_CLASSMAP = 'classmap';
Expand Down
2 changes: 1 addition & 1 deletion src/Common/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Narrowspark Automatic</h1>
<h1 align="center">Narrowspark Automatic Common</h1>
<p align="center">
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>
Expand Down
2 changes: 1 addition & 1 deletion src/Prefetcher/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
class Plugin implements EventSubscriberInterface, PluginInterface
{
/** @var string */
public const VERSION = '0.12.0';
public const VERSION = '0.13.0';

/** @var string */
public const COMPOSER_EXTRA_KEY = 'prefetcher';
Expand Down
2 changes: 1 addition & 1 deletion src/Prefetcher/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Narrowspark Automatic</h1>
<h1 align="center">Narrowspark Automatic Prefetcher</h1>
<p align="center">
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>
Expand Down
2 changes: 1 addition & 1 deletion src/Security/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
class Plugin implements Capable, EventSubscriberInterface, PluginInterface
{
/** @var string */
public const VERSION = '0.12.0';
public const VERSION = '0.13.0';

/** @var string */
public const COMPOSER_EXTRA_KEY = 'audit';
Expand Down
2 changes: 1 addition & 1 deletion src/Security/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<h1 align="center">Narrowspark Automatic</h1>
<h1 align="center">Narrowspark Automatic Security Audit</h1>
<p align="center">
<a href="https://github.com/narrowspark/automatic/releases"><img src="https://img.shields.io/packagist/v/narrowspark/automatic.svg?style=flat-square"></a>
<a href="https://php.net/"><img src="https://img.shields.io/badge/php-%5E7.1.0-8892BF.svg?style=flat-square"></a>
Expand Down

0 comments on commit ddd24dc

Please sign in to comment.