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

Commit d065e03

Browse files
authored
feat : added updated changelog (#149)
* feat : added updated changelog * feat : updated workflow syntax
1 parent 2e4ffe6 commit d065e03

File tree

8 files changed

+40
-22
lines changed

8 files changed

+40
-22
lines changed

.github/workflows/coding-standard.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: 'Coding Standard'
1+
name: "Coding Standard"
22

33
on:
44
push:
55
paths:
6-
- '**.php'
6+
- "**.php"
77
pull_request:
88
paths:
9-
- '**.php'
9+
- "**.php"
1010

1111
jobs:
1212
php-cs-fixer:
13-
name: 'PHP-CS-Fixer'
13+
name: "PHP-CS-Fixer"
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@master
@@ -20,7 +20,7 @@ jobs:
2020
php-version: 7.3
2121
extension-csv: mbstring, xml, ctype, iconv, zip, dom, fileinfo
2222
- run: composer global require narrowspark/automatic-composer-prefetcher:dev-master narrowspark/coding-standard:3.2.0 --no-interaction --no-progress --profile --no-suggest --optimize-autoloader
23-
- name: 'lint php code'
23+
- name: "lint php code"
2424
run: |
2525
cd $GITHUB_WORKSPACE
2626
/home/runner/.composer/vendor/bin/php-cs-fixer fix --config=$GITHUB_WORKSPACE/.php_cs -v --dry-run --stop-on-violation

.github/workflows/markdown-lint.yml

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
1-
name: 'Markdown Lint'
1+
name: "Markdown Lint"
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
paths:
6+
- "**.md"
7+
pull_request:
8+
paths:
9+
- "**.md"
410

511
jobs:
612
text-lint:
7-
name: 'Markdown lint'
13+
name: "Markdown lint"
814
runs-on: ubuntu-latest
915
steps:
1016
- uses: actions/checkout@v1
1117
- name: Setup node
1218
uses: actions/setup-node@v1
1319
with:
14-
node-version: '10.16.0'
20+
node-version: "10.16.0"
1521
- run: npm install
1622
- run: npm run lint

.github/workflows/mutation.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: 'Mutation testing'
1+
name: "Mutation testing"
22

33
on:
44
push:
55
paths:
6-
- '**.php'
6+
- "**.php"
77
pull_request:
88
paths:
9-
- '**.php'
9+
- "**.php"
1010

1111
jobs:
1212
php-cs-fixer:
13-
name: 'Infection'
13+
name: "Infection"
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@master
@@ -19,5 +19,5 @@ jobs:
1919
with:
2020
php-version: 7.2
2121
- run: composer install
22-
- name: 'mutation tests'
22+
- name: "mutation tests"
2323
run: ulimit -n 4096 && phpdbg -qrr ./vendor/bin/infection -vvv --min-msi=40 --min-covered-msi=60

.github/workflows/static-analyze.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
name: 'Static analyzing'
1+
name: "Static analyzing"
22

33
on:
44
push:
55
paths:
6-
- '**.php'
6+
- "**.php"
77
pull_request:
88
paths:
9-
- '**.php'
9+
- "**.php"
1010

1111
jobs:
1212
php-cs-fixer:
13-
name: 'PHPStan'
13+
name: "PHPStan"
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@master
@@ -19,5 +19,5 @@ jobs:
1919
with:
2020
php-version: 7.2
2121
- run: composer install
22-
- name: 'analyze php code'
22+
- name: "analyze php code"
2323
run: composer phpstan

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
v0.13.1
2+
=======
3+
4+
- Total issues resolved: **0**
5+
- Total pull requests resolved: **1**
6+
- Total contributors: **1**
7+
8+
Fixed
9+
-----
10+
11+
- [148: fix : added method check for filesystem readlink](https://github.com/narrowspark/automatic/pull/148) thanks to @prisis
12+
113
v0.13.0
214
=======
315

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.13.0';
82+
public const VERSION = '0.13.1';
8383

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

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.13.0';
66+
public const VERSION = '0.13.1';
6767

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

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.13.0';
56+
public const VERSION = '0.13.1';
5757

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

0 commit comments

Comments
 (0)