Skip to content

Commit

Permalink
Prepare v0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Nov 16, 2017
1 parent bc58ecf commit bd49cc8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 4 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## 0.6.0 (2017-11-16)

* Feature: Add new `--no-scripts` argument to skip reload scripts/commands
(#26 and #29 by @thklein)

```bash
$ confgen --no-scripts -t wifi.conf.twig -d data.json
```

* First class support for legacy PHP 5.3 through PHP 7.1 and HHVM and
documentation for installing and creating `confgen.phar`
(#31 and #32 by @clue)

* Improve test suite by locking Travis distro so new defaults will not break the build and
add PHPUnit as dev dependency and support PHPUnit 5 and PHPUnit 6.
(#27 by @thklein and #28 by @gabriel-caruso)

## 0.5.0 (2015-07-29)

* BC break / Feature: Path to "templates" is relative to definition – other paths to PWD
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# clue/confgen [![Build Status](https://travis-ci.org/clue/php-confgen.svg?branch=master)](https://travis-ci.org/clue/php-confgen)

Configuration file generator (confgen) –
an easy way to take a *Twig template* and an arbitrary input data structure to
generate structured (configuration) files on the fly.
an easy way to generate structured (configuration) files on the fly by
processing a *Twig template* and an arbitrary input data structure.

**Table of contents**

Expand Down Expand Up @@ -316,7 +316,7 @@ The recommended way to install this library is [through Composer](https://getcom
[New to Composer?](https://getcomposer.org/doc/00-intro.md)

```bash
$ composer require clue/confgen:^0.5
$ composer require clue/confgen:^0.6
```

This project aims to run on any platform and thus does not require any PHP
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clue/confgen",
"description": "Configuration file generator (confgen) – an easy way to take a Twig template and an arbitrary input data structure to generate structured (configuration) files on the fly",
"description": "Configuration file generator (confgen) – an easy way to generate structured (configuration) files on the fly by processing a Twig template and an arbitrary input data structure.",
"keywords": ["confgen", "Configuration generator", "Twig template", "YAML front matter"],
"homepage": "https://github.com/clue/php-confgen",
"license": "MIT",
Expand Down

0 comments on commit bd49cc8

Please sign in to comment.