diff --git a/.gitattributes b/.gitattributes index 06842b9c28b..d8559fffb03 100644 --- a/.gitattributes +++ b/.gitattributes @@ -3,5 +3,7 @@ docs/* linguist-documentation *.zep.h linguist-language=C *.zep.c linguist-language=C +*.sql linguist-language=SQL + ext/* linguist-vendored build/* linguist-vendored diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index e89a2b829ed..e471077846d 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -8,7 +8,7 @@ Please also check the following points are being met: - [ ] Make sure that the PR passes in Travis CI to make the process more efficient. - [ ] Only use tabs for indentation. -- [ ] if needed, rebase to the proper branch before submitting your pull request. +- [ ] If needed, rebase to the proper branch before submitting your pull request. If it doesn't merge cleanly with master you may be asked to rebase your changes. - [ ] Don't put submodule updates in your pull request unless they are to landed commits. - [ ] Add tests relevant to the fixed bug or new feature. See our testing guide for diff --git a/CHANGELOG.md b/CHANGELOG.md index f030e11c3c3..ab730497075 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# [3.0.2](https://github.com/phalcon/cphalcon/releases/tag/v3.0.2) (2016-XX-XX) + # [3.0.1](https://github.com/phalcon/cphalcon/releases/tag/v3.0.1) (2016-08-24) - Fixed `Phalcon\Cache\Backend\Redis::flush` in order to flush cache correctly - Fixed `Phalcon\Mvc\Model\Manager::getRelationRecords` to correct using multi relation column [#12035](https://github.com/phalcon/cphalcon/issues/12035) diff --git a/config.json b/config.json index f74619b0c80..317e906885b 100644 --- a/config.json +++ b/config.json @@ -10,7 +10,7 @@ "name": "phalcon", "description": "Web framework delivered as a C-extension for PHP", "author": "Phalcon Team and contributors", - "version": "3.0.1", + "version": "3.0.2", "verbose": false, "optimizer-dirs": [ "optimizers" diff --git a/phalcon/version.zep b/phalcon/version.zep index 48926db7812..7a6f60d31b2 100644 --- a/phalcon/version.zep +++ b/phalcon/version.zep @@ -80,7 +80,7 @@ class Version */ protected static function _getVersion() -> array { - return [3, 0, 1, 4, 0]; + return [3, 0, 2, 4, 0]; } /**