diff --git a/CHANGELOG.md b/CHANGELOG.md index 6da245b4d..df1c2e442 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Version History -**0.6.x-dev** (***) +**0.6.5** (Thursday, 27 October 2016) * Documentation updates * Pull requests * [#831](https://github.com/robmorgan/phinx/pull/831) Typos + * [#929](https://github.com/robmorgan/phinx/pull/929) Support glob brace for seed paths + * [#949](https://github.com/robmorgan/phinx/pull/949) Fix for Config::getMigrationBaseClassName + * [#958](https://github.com/robmorgan/phinx/pull/958) Allow console input to be used within adapters **0.6.4** (Wednesday, 27th July 2016) diff --git a/docs/conf.py b/docs/conf.py index 276802a9b..a3b7882e4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '0.6' # The full version, including alpha/beta/rc tags. -release = '0.6.4' +release = '0.6.5' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/Phinx/Console/PhinxApplication.php b/src/Phinx/Console/PhinxApplication.php index 638577d9f..eb5718f7e 100644 --- a/src/Phinx/Console/PhinxApplication.php +++ b/src/Phinx/Console/PhinxApplication.php @@ -47,7 +47,7 @@ class PhinxApplication extends Application * * @param string $version The Application Version */ - public function __construct($version = '0.6.4') + public function __construct($version = '0.6.5') { parent::__construct('Phinx by Rob Morgan - https://phinx.org.', $version);