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

Commit

Permalink
updated changelog (#95)
Browse files Browse the repository at this point in the history
| Q               | A
| --------------- | ---
| Bug fix?        | no
| New feature?    | no
| BC breaks?      | no
| Deprecations?   | no
| Related tickets | -
| License         | MIT
| Doc PR          | -
  • Loading branch information
prisis authored Nov 2, 2018
1 parent 0271bde commit 5980ce6
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
v0.9.0
======

- Total issues resolved: **2**
- Total pull requests resolved: **1**
- Total contributors: **1**

Changed
-------

- [94: removed dependency on ext-mbstring](https://github.com/narrowspark/automatic/pull/94) thanks to @prisis
- [93: upgrade coding-standard to v1.4.0](https://github.com/narrowspark/automatic/issues/93) thanks to @prisis
- [92: changed min version of php to 7.1](https://github.com/narrowspark/automatic/issues/92) thanks to @prisis

## v0.8.6

- Total issues resolved: **0**
Expand Down
8 changes: 4 additions & 4 deletions doc/CONFIGURATORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The `###> your-package-name-here ###` section separators are needed by Narrowspa
to detect the contents added by this dependency in case you uninstall it later.
> !!! Don't remove or modify these separators.
Composer Auto Scripts Configurator `composer-auto-scripts`
### Composer Auto Scripts Configurator `composer-auto-scripts`

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

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

Git ignore Configurator `gitignore`
### Gitignore Configurator `gitignore`

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

The package messages `post-messages`
### The package messages `post-messages`

Displays contents in the command console after the package has been installed.
Avoid outputting meaningless information and use it only when you need to show
Expand Down
2 changes: 1 addition & 1 deletion src/Automatic/Automatic.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class Automatic implements PluginInterface, EventSubscriberInterface
/**
* @var string
*/
public const VERSION = '0.8.6';
public const VERSION = '0.9.0';

/**
* @var string
Expand Down
2 changes: 1 addition & 1 deletion src/Security/SecurityPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class SecurityPlugin implements PluginInterface, EventSubscriberInterface, Capab
/**
* @var string
*/
public const VERSION = '0.8.6';
public const VERSION = '0.9.0';

/**
* @var string
Expand Down

0 comments on commit 5980ce6

Please sign in to comment.