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

Commit 5980ce6

Browse files
authored
updated changelog (#95)
| Q | A | --------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Related tickets | - | License | MIT | Doc PR | -
1 parent 0271bde commit 5980ce6

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
v0.9.0
2+
======
3+
4+
- Total issues resolved: **2**
5+
- Total pull requests resolved: **1**
6+
- Total contributors: **1**
7+
8+
Changed
9+
-------
10+
11+
- [94: removed dependency on ext-mbstring](https://github.com/narrowspark/automatic/pull/94) thanks to @prisis
12+
- [93: upgrade coding-standard to v1.4.0](https://github.com/narrowspark/automatic/issues/93) thanks to @prisis
13+
- [92: changed min version of php to 7.1](https://github.com/narrowspark/automatic/issues/92) thanks to @prisis
14+
115
## v0.8.6
216

317
- Total issues resolved: **0**

doc/CONFIGURATORS.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The `###> your-package-name-here ###` section separators are needed by Narrowspa
7272
to detect the contents added by this dependency in case you uninstall it later.
7373
> !!! Don't remove or modify these separators.
7474
75-
Composer Auto Scripts Configurator `composer-auto-scripts`
75+
### Composer Auto Scripts Configurator `composer-auto-scripts`
7676

7777
Registers `auto-scripts` in the `composer-scripts` section of the root `composer.json` file
7878
to execute them automatically when running `composer install` and `composer update`.
@@ -88,7 +88,7 @@ The value is an associative array where the key is the script to execute (includ
8888
}
8989
}
9090
```
91-
Composer Scripts Configurator `composer-scripts`
91+
### Composer Scripts Configurator `composer-scripts`
9292

9393
Registers [composer scripts](https://getcomposer.org/doc/articles/scripts.md) in the `composer-scripts` section of the root `composer.json` file.
9494
Only the composer `command`, `installer` and `package` events are supported, you will get a warning if other events a used.
@@ -134,7 +134,7 @@ final class ScriptExtender extends AbstractScriptExtender
134134
}
135135
```
136136

137-
Git ignore Configurator `gitignore`
137+
### Gitignore Configurator `gitignore`
138138

139139
Adds patterns to the ``.gitignore`` file in your project. Define those
140140
patterns as a simple array of strings (a `PHP_EOL` character is added after
@@ -157,7 +157,7 @@ Similar to other configurators, the contents are copied into the `.gitignore`
157157
file and wrapped with section separators (``###> your-package-name-here ###``)
158158
that must not be removed or modified.
159159

160-
The package messages `post-messages`
160+
### The package messages `post-messages`
161161

162162
Displays contents in the command console after the package has been installed.
163163
Avoid outputting meaningless information and use it only when you need to show

src/Automatic/Automatic.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class Automatic implements PluginInterface, EventSubscriberInterface
6161
/**
6262
* @var string
6363
*/
64-
public const VERSION = '0.8.6';
64+
public const VERSION = '0.9.0';
6565

6666
/**
6767
* @var string

src/Security/SecurityPlugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class SecurityPlugin implements PluginInterface, EventSubscriberInterface, Capab
2626
/**
2727
* @var string
2828
*/
29-
public const VERSION = '0.8.6';
29+
public const VERSION = '0.9.0';
3030

3131
/**
3232
* @var string

0 commit comments

Comments
 (0)