From d11bfbbc905be3dc079d3f8c3c4437e75939eeee Mon Sep 17 00:00:00 2001 From: Shih Oon Liong Date: Wed, 2 Dec 2015 10:42:16 -0800 Subject: [PATCH 1/2] Changelog update --- CHANGELOG.md | 7 +++++++ README.md | 14 +++++++------- 2 files changed, 14 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebc8889..99e533b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes will be documented in this file. Guidelines on the format an Version names based on [Top 100 Songs of 1984 - Billboard Year End Charts](http://www.bobborst.com/popculture/top-100-songs-of-the-year/?year=1984), follow in descending order. +## 1.1.0 - 2015-12-02 - `Against All Odds (Take A Look At Me Now)` + +### Fixed + +* Comma issues with command line arguments for PHP CS. Thanks to @ixisandyr and @jaychakra +* PHP Codesniffer and Beautifer Combo by @jaychakra + ## 1.0.0 - 2015-03-03 - `Footloose` Initial Public Release. Version number bumped and moved out of the private repository. \ No newline at end of file diff --git a/README.md b/README.md index 6940277..e7e693d 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Just add to your `.pre-commit-config.yaml` file with the following ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-lint - id: php-unit @@ -27,7 +27,7 @@ Just add to your `.pre-commit-config.yaml` file with the following ```yaml <<<<<<< HEAD - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-lint ``` @@ -38,7 +38,7 @@ A bash script that runs `php -l` against stage files that are php. Assumes `php` ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-lint-all ``` @@ -50,7 +50,7 @@ A systems hook that just runs `php -l` against stage files that have the `.php` ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-unit ``` @@ -65,7 +65,7 @@ Note in its current state, it will run the whole PHPUnit test as along as `.php` ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-cs files: \.(php)$ @@ -84,7 +84,7 @@ If you have multiple standards or a comma in your `args` property, escape the co ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-cs files: \.(php)$ @@ -100,7 +100,7 @@ If you have multiple standards or a comma in your `args` property, escape the co ```yaml - repo: git@github.com:hootsuite/pre-commit-php.git - sha: 1.0.0 + sha: 1.1.0 hooks: - id: php-cs files: \.(php)$ From 61ac5a711ab510f0e56ca9abb81ad335ae28a7f4 Mon Sep 17 00:00:00 2001 From: Shih Oon Liong Date: Wed, 2 Dec 2015 10:42:30 -0800 Subject: [PATCH 2/2] Changelog update --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 99e533b..e967892 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ Version names based on [Top 100 Songs of 1984 - Billboard Year End Charts](http: ### Fixed * Comma issues with command line arguments for PHP CS. Thanks to @ixisandyr and @jaychakra + +### Added + * PHP Codesniffer and Beautifer Combo by @jaychakra ## 1.0.0 - 2015-03-03 - `Footloose`